Amending Base10 to slightly darker `#202122` to fulfill WCAG requirements in connection to Accent50. Also removing all PNG fallbacks as they are only used in JS-only. Bug: T248393 Change-Id: I07fa4e23320763a634e5340ab125634842b86454
30 lines
596 B
Plaintext
30 lines
596 B
Plaintext
/* stylelint-disable selector-max-id */
|
|
@import 'mediawiki.mixins';
|
|
|
|
#p-lang .uls-settings-trigger {
|
|
background: transparent url( ../images/cog-sprite.svg ) no-repeat center top;
|
|
border: 0;
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
float: right;
|
|
cursor: pointer;
|
|
|
|
// Remove the dotted border for Firefox
|
|
&::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 1px solid #36c;
|
|
}
|
|
}
|
|
|
|
.skin-vector #p-lang .uls-settings-trigger {
|
|
/* Put it in the middle of the first row of the section title */
|
|
margin-top: 8px;
|
|
}
|
|
|
|
#p-lang .uls-settings-trigger:hover {
|
|
background-position: center -16px;
|
|
}
|