14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*border: initial; */
}
body.wikiedit div.wikiedit-preview {
margin: 0;
padding: 0;
}
body.wikiedit #wikiedit-tabs {
margin: 1em 0 0 0;
}
body.wikiedit #wikiedit-tab-preview-wrapper {
overflow: auto;
}
body.wikiedit .tab-container > .tabs > .tab-panel > .wikiedit-options {
margin-top: 0;
border: none;
|
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*border: initial; */
}
body.wikiedit div.wikiedit-preview {
margin: 0;
padding: 0;
}
body.wikiedit #wikiedit-tabs {
margin: 0.5em 0 0 0;
}
body.wikiedit #wikiedit-tab-preview-wrapper {
overflow: auto;
}
body.wikiedit .tab-container > .tabs > .tab-panel > .wikiedit-options {
margin-top: 0;
border: none;
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
align-items: start;
}
body.wikiedit .WikiList select {
font-size: 110%;
margin: initial;
height: initial /* some skins set these to a fixed height */;
font-family: monospace;
}
body.wikiedit .WikiList select option {
margin: 0 0 0.5em 0.55em;
}
body.wikiedit .WikiList select option.stashed,
body.wikiedit .WikiList select option.stashed-new,
body.wikiedit .WikiList select option.deleted {
margin-left: -0.4em;
}
body.wikiedit .WikiList.hide-deleted select option.deleted {
|
>
>
>
>
>
>
>
>
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
align-items: start;
}
body.wikiedit .WikiList select {
font-size: 110%;
margin: initial;
height: initial /* some skins set these to a fixed height */;
font-family: monospace;
border: initial;
}
body.wikiedit select:focus {
border: initial;
}
body.wikiedit .WikiList select option {
margin: 0 0 0.5em 0.55em;
}
body.wikiedit select option,
body.wikiedit select option:focus {
border: none;
}
body.wikiedit .WikiList select option.stashed,
body.wikiedit .WikiList select option.stashed-new,
body.wikiedit .WikiList select option.deleted {
margin-left: -0.4em;
}
body.wikiedit .WikiList.hide-deleted select option.deleted {
|
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
border-style: inset;
}
body.wikiedit .WikiList label {
margin: 0 0.5em;
vertical-align: text-bottom;
}
body.wikiedit .WikiList legend {
font-size: 90%;
margin: 0 0 0 0.5em;
}
body.wikiedit .WikiList fieldset > :not(legend) {
/* Stretch page selection list when it's empty or only has short page names */
width: 100%;
}
body.wikiedit .WikiList .fieldset-wrapper {
/* Container for the filter and edit status fieldsets */
display: flex;
flex-direction: row;
flex-wrap: wrap;
|
<
>
>
>
>
>
|
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
border-style: inset;
}
body.wikiedit .WikiList label {
margin: 0 0.5em;
vertical-align: text-bottom;
}
body.wikiedit .WikiList legend {
margin: 0 0 0 0.5em;
}
body.wikiedit .WikiList > fieldset {
margin: 0;
width: calc(100% - 1em);
}
body.wikiedit .WikiList fieldset > :not(legend) {
/* Stretch page selection list when it's empty or only has short page names */
margin: 0;
width: 100%;
}
body.wikiedit .WikiList .fieldset-wrapper {
/* Container for the filter and edit status fieldsets */
display: flex;
flex-direction: row;
flex-wrap: wrap;
|