Merge "Check validity and availability of usernames during signup via AJAX"
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.notification.css
1 .mw-notification-area {
2 position: absolute;
3 top: 0;
4 right: 0;
5 padding: 1em 1em 0 0;
6 width: 20em;
7 line-height: 1.35;
8 z-index: 10000;
9 }
10
11 .mw-notification-area-floating {
12 position: fixed;
13 }
14
15 * html .mw-notification-area-floating {
16 /* Make it at least 'absolute' in IE6 since 'fixed' is not supported */
17 position: absolute;
18 }
19
20 .mw-notification {
21 padding: 0.25em 1em;
22 margin-bottom: 0.5em;
23 border: solid 1px #ddd;
24 background-color: #fcfcfc;
25 /* Message hides on-click */
26 /* See also mediawiki.notification.js */
27 cursor: pointer;
28 }
29
30 .mw-notification-title {
31 font-weight: bold;
32 }