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
38 lines
806 B
Plaintext
38 lines
806 B
Plaintext
/* stylelint-disable selector-max-id */
|
|
@import 'mediawiki.mixins';
|
|
|
|
#uls-settings-block {
|
|
background-color: #f8f9fa;
|
|
border-top: 1px solid #c8ccd1;
|
|
padding-left: 10px;
|
|
line-height: 1.2em;
|
|
border-radius: 0 0 2px 2px;
|
|
|
|
> button {
|
|
background: left top transparent no-repeat;
|
|
// Support: Safari 3.1-6.1 & Android browser 3-4.3
|
|
// Don't support `background-size` values in `background` shorthand
|
|
background-size: 20px auto;
|
|
color: #54595d;
|
|
display: inline-block;
|
|
// Normalize the button
|
|
margin: 8px 15px;
|
|
border: 0;
|
|
padding: 0 0 0 26px;
|
|
font-size: medium;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: #202122;
|
|
}
|
|
|
|
&.display-settings-block {
|
|
background-image: url( ../images/display.svg );
|
|
}
|
|
|
|
&.input-settings-block {
|
|
background-image: url( ../images/input.svg );
|
|
}
|
|
}
|
|
}
|