Most of the skin styles are no longer needed for modern Vector. This refactors them so that they only apply to legacy vector, reducing the overrides needed inside Vector. Depends-On: I1edee874a42b070bc319648496ae80a01b6365fb Bug: T289630 Change-Id: Ic5ab5172d881c48caae6bb3691ccc95515dcdcdb
17 lines
505 B
Plaintext
17 lines
505 B
Plaintext
/* stylelint-disable selector-max-id */
|
|
/* Opera for some inexplicable reason confuses right and left padding with */
|
|
/* RTL text direction here (bug T47142). x:-o-prefocus won't match anything, */
|
|
/* but will make other browsers ignore this rule. */
|
|
/* stylelint-disable selector-type-no-unknown */
|
|
x:-o-prefocus,
|
|
body.rtl li#pt-uls {
|
|
/* @noflip */
|
|
direction: ltr;
|
|
}
|
|
/* stylelint-enable selector-type-no-unknown */
|
|
|
|
/* Don't show it to users who disabled JS */
|
|
.client-nojs #pt-uls {
|
|
display: none;
|
|
}
|