This does not have much effect on the gzipped payload, but it still makes the modules look big and (I assume) take space in the local storage. This prefix is not used by current versions of browsers, so the only change is that some users with old browsers get bitmap images instead of vector images. Instances where -moz-linear-gradient is used with colors were left in, as were the instances in upstream libs. Change-Id: I1515c53955467eb21c8ed70e46aecc61ab4718c2
22 lines
622 B
CSS
22 lines
622 B
CSS
#p-lang .uls-settings-trigger {
|
|
/* @embed */
|
|
background: transparent url('../images/cog-sprite.png') no-repeat right top;
|
|
/* @embed */
|
|
background-image: -webkit-linear-gradient(transparent, transparent), url('../images/cog-sprite.svg');
|
|
/* @embed */
|
|
background-image: linear-gradient(transparent, transparent), url('../images/cog-sprite.svg');
|
|
height: 16px;
|
|
width: 14px;
|
|
float: right;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.skin-vector #p-lang .uls-settings-trigger {
|
|
/* Put it in the middle of the first row of the section title */
|
|
margin-top: 3px;
|
|
}
|
|
|
|
#p-lang .uls-settings-trigger:hover {
|
|
background-position: right -16px;
|
|
}
|