blob: 9e5efd36fd7b1a42b8d8259deac35da88b3bcee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/* Reuses colors from mediawiki.special.changeemail.css */
.mw-email-not-authenticated .mw-input,
.mw-email-none .mw-input{
border: 1px solid #FF8080;
background-color: #FFC0C0;
color: black;
}
/* Authenticated email field has its own class too. Unstyled by default */
/*
.mw-email-authenticated .mw-input { }
*/
/*
* Hide, but keep accessible for screen-readers.
* Like .mw-jump, #jump-to-nav from shared.css
*/
.mw-navigation-hint {
overflow: hidden;
height: 0;
zoom: 1;
}
/* When JS is enabled, .mw-preferences-messageboxes are replaced with mw.notifications */
.mw-preferences-messagebox {
display: none;
}
.prefsection td.mw-label {
width: 20%;
}
.prefsection table {
width: 100%;
}
.prefsection table.mw-htmlform-matrix {
width: auto;
}
|