* Mark non-autoconfirmed users in RC
[lhc/web/wiklou.git] / skins / common / shared.css
1 /**
2 * CSS in this file is used by *all* skins (that have any CSS at all). Be
3 * careful what you put in here, since what looks good in one skin may not in
4 * another, but don't ignore the poor non-Monobook users either.
5 */
6 .mw-plusminus-null { color: #aaa; }
7
8 .texvc { direction: ltr; unicode-bidi: embed; }
9 img.tex { vertical-align: middle; }
10 span.texhtml { font-family: serif; }
11
12 /* add a bit of margin space between the preview and the toolbar */
13 /* this replaces the ugly <p><br /></p> we used to insert into the page source */
14 #wikiPreview.ontop { margin-bottom: 1em; }
15
16 /* Stop floats from intruding into edit area in previews */
17 #toolbar, #wpTextbox1 { clear: both; }
18
19 div#mw-js-message {
20 margin: 1em 5%;
21 padding: 0.5em 2.5%;
22 border: solid 1px #ddd;
23 background-color: #fcfcfc;
24 }
25
26 /* Edit section links */
27 .editsection {
28 float: right;
29 margin-left: 5px;
30 }
31
32 /**
33 * File histories
34 */
35 table.filehistory {
36 border:1px solid #ccc;
37 border-collapse:collapse;
38 }
39
40 table.filehistory th,
41 table.filehistory td {
42 padding: 0 0.2em 0 0.2em;
43 vertical-align:top;
44 border:1px solid #ccc;
45 }
46 table.filehistory th {
47 text-align: left;
48 }
49 table.filehistory td.mw-imagepage-filesize,
50 table.filehistory th.mw-imagepage-filesize {
51 white-space:nowrap;
52 }
53
54 table.filehistory td.filehistory-selected {
55 font-weight: bold;
56 }
57
58 /*
59 * Recent changes
60 */
61 span.unpatrolled {
62 font-weight: bold;
63 color: red;
64 }
65 span.newuser {
66 font-weight:bold;
67 color:orange;
68 }
69
70 /*
71 * RevisionDelete stuff
72 */
73 li span.deleted, span.history-deleted {
74 text-decoration: line-through;
75 color: #888;
76 font-style: italic;
77 }
78
79 /**
80 * Forms
81 */
82 body.ltr td.mw-label { text-align: right; }
83 body.ltr td.mw-input { text-align: left; }
84 body.ltr td.mw-submit { text-align: left; }
85 body.rtl td.mw-label { text-align: left; }
86 body.rtl td.mw-input { text-align: right; }
87 body.rtl td.mw-submit { text-align: right; }
88
89 td.mw-label { vertical-align: top; }
90 td.mw-submit { white-space: nowrap; }
91
92 /**
93 * Image captions
94 */
95 body.rtl .thumbcaption { text-align:right; }
96 body.rtl .magnify { float:left; }
97
98 body.ltr .thumbcaption { text-align:left; }
99 body.ltr .magnify { float:right; }
100
101 /**
102 * Hidden categories
103 */
104 .mw-hidden-cats-hidden { display: none; }
105 .catlinks-allhidden { display: none; }
106
107 /* Convenience links to edit block and delete reasons */
108 p.mw-ipb-conveniencelinks, p.mw-filedelete-editreasons, p.mw-delete-editreasons {
109 font-size: 90%;
110 float: right;
111 }
112
113 /* Search results */
114 div.searchresult {
115 font-size: 95%;
116 width:38em;
117 }
118 .mw-search-results li {
119 padding-bottom: 1em;
120 }
121 .mw-search-result-data {
122 color: green;
123 font-size: 97%;
124 }
125
126 div#mw-search-interwiki {
127 float: right;
128 width: 18em;
129 border-style: solid;
130 border-color: #AAAAAA;
131 border-width: 1px;
132 margin-top: 2ex;
133 }
134
135 div#mw-search-interwiki li {
136 font-size: 95%;
137 }
138
139 .mw-search-interwiki-more {
140 float: right;
141 font-size: 90%;
142 }
143
144 span.searchalttitle {
145 font-size: 95%;
146 }
147
148 div.searchdidyoumean {
149 font-size: 127%;
150 padding-bottom:1ex;
151 padding-top:1ex;
152 }
153
154 /*
155 * UserRights stuff
156 */
157 .mw-userrights-disabled {
158 color: #888;
159 }
160
161 table.mw-userrights-groups * td,table.mw-userrights-groups * th {
162 padding-right: 1.5em;
163 }
164
165 /*
166 * OpenSearch ajax suggestions
167 */
168 .os-suggest {
169 overflow: auto;
170 overflow-x: hidden;
171 position: absolute;
172 top: 0px;
173 left: 0px;
174 width: 0px;
175 background-color: white;
176 background-color: Window;
177 border-style: solid;
178 border-color: #AAAAAA;
179 border-width: 1px;
180 z-index:99;
181 visibility:hidden;
182 font-size:95%;
183 }
184
185 table.os-suggest-results {
186 font-size: 95%;
187 cursor: pointer;
188 border: 0;
189 border-collapse: collapse;
190 width: 100%;
191 }
192
193 td.os-suggest-result, td.os-suggest-result-hl {
194 white-space: nowrap;
195 background-color: white;
196 background-color: Window;
197 color: black;
198 color: WindowText;
199 padding: 2px;
200 }
201 td.os-suggest-result-hl,
202 td.os-suggest-result-hl-webkit {
203 background-color: #4C59A6;
204 color: white;
205 }
206 td.os-suggest-result-hl {
207 /* System colors are misimplemented in Safari 3.0 and earlier,
208 making highlighted text illegible... */
209 background-color: Highlight;
210 color: HighlightText;
211 }
212
213 .os-suggest-toggle {
214 position: relative;
215 left: 1ex;
216 font-size: 65%;
217 }
218 .os-suggest-toggle-def {
219 position: absolute;
220 top: 0px;
221 left: 0px;
222 font-size: 65%;
223 visibility: hidden;
224 }
225
226 /* Page history styling */
227 /* the auto-generated edit comments */
228 .autocomment { color: gray; }
229 #pagehistory .history-user {
230 margin-left: 0.4em;
231 margin-right: 0.2em;
232 }
233 #pagehistory span.minor { font-weight: bold; }
234 #pagehistory li { border: 1px solid white; }
235 #pagehistory li.selected {
236 background-color: #f9f9f9;
237 border: 1px dashed #aaa;
238 }
239
240 table.mw-listgrouprights-table {
241 border: 1px solid #ccc;
242 border-collapse: collapse;
243 }
244
245 table.mw-listgrouprights-table tr {
246 vertical-align: top;
247 }
248
249 table.mw-listgrouprights-table td, table.mw-listgrouprights-table th {
250 padding: 0.5em 0.2em 0.5em 0.2em;
251 border: 1px solid #ccc;
252 }
253
254 /* Special:SpecialPages styling */
255 h4.mw-specialpagesgroup {
256 background-color: #dcdcdc;
257 padding: 2px;
258 margin: .3em 0em 0em 0em;
259 }
260 .mw-specialpagerestricted {
261 font-weight: bold;
262 }
263
264 #shared-image-dup, #shared-image-conflict {
265 font-style: italic;
266 }
267
268 /* Special:EmailUser styling */
269 table.mw-emailuser-table {
270 width: 98%;
271 }
272 td#mw-emailuser-sender, td#mw-emailuser-recipient {
273 font-weight: bold;
274 }
275