Added a CSS class for infobox block.

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).
pull/108/head
luccioman 8 years ago
parent 68afe900d0
commit 95b63f5126

@ -57,7 +57,7 @@
<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>
@ -90,7 +90,7 @@
<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>

@ -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;

Loading…
Cancel
Save