CSS to avoid style clash with link color on map labels
Map labels are shown as blue when the ULS is integrated with MediaWiki. This commit: * Changes the hidding label strategy to be based on modifying the opacity (not the color of links). * Specifis the label color explicitly to avoid CSS conflicts.
This commit is contained in:
@@ -118,14 +118,19 @@ div.uls-region {
|
|||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
float: right;
|
float: right;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
color: rgba(0,0,0,0);
|
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
transition: color 0.15s linear;
|
transition: opacity 0.2s linear;
|
||||||
-moz-transition: color 0.15s linear;
|
-moz-transition: opacity 0.2s linear;
|
||||||
-webkit-transition: color 0.15s linear;
|
-webkit-transition: opacity 0.2s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
#map-block:hover {
|
#map-block a{
|
||||||
|
opacity:0;
|
||||||
|
transition: opacity 0.15s linear;
|
||||||
|
-moz-transition: opacity 0.15s linear;
|
||||||
|
-webkit-transition: opacity 0.15s linear;
|
||||||
|
}
|
||||||
|
#map-block:hover, #map-block:hover a {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user