Merge "Tiny clean up of Parser::doQuotes()"
[lhc/web/wiklou.git] / resources / src / mediawiki / mediawiki.notification.css
1 .mw-notification-area {
2 top: 0;
3 right: 0;
4 padding: 1em 1em 0 0;
5 width: 20em;
6 line-height: 1.35;
7 z-index: 10000;
8 }
9
10 .mw-notification {
11 padding: 0.25em 1em;
12 margin-bottom: 0.5em;
13 border: solid 1px #ddd;
14 background-color: #fcfcfc;
15 /* Message hides on-click */
16 /* See also mediawiki.notification.js */
17 cursor: pointer;
18 }
19
20 .mw-notification-title {
21 font-weight: bold;
22 }
23
24 .mw-notification-type-warn {
25 border-color: #F5BE00; /* yellow */
26 background-color: #FFFFE8;
27 }
28
29 .mw-notification-type-error {
30 border-color: #EB3941; /* red */
31 background-color: #FFF8F8;
32 }