Merge "Remove $wgUseTeX for checking if editing tools should be shown"
[lhc/web/wiklou.git] / resources / mediawiki / mediawiki.notification.css
1 /**
2 * Stylesheet for mediawiki.notification module
3 */
4
5 .mw-notification-area {
6 position: absolute;
7 top: 0;
8 right: 0;
9 padding: 1em 1em 0 0;
10 width: 20em;
11 line-height: 1.35;
12 z-index: 10000;
13 }
14
15 .mw-notification-area-floating {
16 position: fixed;
17 }
18
19 * html .mw-notification-area-floating {
20 /* Make it at least 'absolute' in IE6 since 'fixed' is not supported */
21 position: absolute;
22 }
23
24 .mw-notification {
25 padding: 0.25em 1em;
26 margin-bottom: 0.5em;
27 border: solid 1px #ddd;
28 background-color: #fcfcfc;
29 /* Message hides on-click */
30 /* See also mediawiki.notification.js */
31 cursor: pointer;
32 }
33
34 .mw-notification-title {
35 font-weight: bold;
36 }