Skip to content

Commit

Permalink
Added a CSS class for infobox block.
Browse files Browse the repository at this point in the history
This will prevent mistakenly hiding a div element not designed to be an
infobox but having a ".info" parent (After having previously added the
possibility for a div - and not only a span element - to be an infobox).
  • Loading branch information
luccioman committed Jan 28, 2017
1 parent 68afe90 commit 95b63f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions htroot/Performance_p.html
Expand Up @@ -57,7 +57,7 @@ <h2>Performance Settings</h2>
<input name="diskFreeAutoregulate" id="diskFreeAutoregulate" type="checkbox" #(diskFreeAutoregulate)#::checked#(/diskFreeAutoregulate)# aria-describedby="autoregulateFreeInfo"/> when absolute minimum limit has been reached.
<div class="info" style="float:right">
<img src="env/grafics/i16.gif" width="16" height="16" alt="Free space disk autoregulation info"/>
<div style="right:0px;" id="autoregulateFreeInfo">
<div class="infobox" style="right:0px;" id="autoregulateFreeInfo">
The autoregulation task performs the following sequence of operations, stopping once free space disk is over the steady-state value :
<ol>
<li>delete old releases</li>
Expand Down Expand Up @@ -90,7 +90,7 @@ <h2>Performance Settings</h2>
<input name="diskUsedAutoregulate" id="diskUsedAutoregulate" type="checkbox" #(diskUsedAutoregulate)#::checked#(/diskUsedAutoregulate)# aria-describedby="autoregulateUsedInfo"> when absolute maximum limit has been reached.
<div class="info" style="float:right">
<img src="env/grafics/i16.gif" width="16" height="16" alt="Used space disk autoregulation info"/>
<div style="right:0px;" id="autoregulateUsedInfo">
<div class="infobox" style="right:0px;" id="autoregulateUsedInfo">
The autoregulation task performs the following sequence of operations, stopping once used space disk is below the steady-state value:
<ol>
<li>delete old releases</li>
Expand Down
4 changes: 2 additions & 2 deletions htroot/env/base.css
Expand Up @@ -1038,11 +1038,11 @@ div#tagcloud {
margin: 10px 0;
}

.info span, .info div {
.info span, .info .infobox {
display: none;
}

.info:hover span, .info:hover div {
.info:hover span, .info:hover .infobox {
display: block;
position: absolute;
font-size:1em;
Expand Down

0 comments on commit 95b63f5

Please sign in to comment.