1 .mw-notification-area {
8 /* Avoid horizontal scrollbar on fade in and on fade out */
15 border: solid
1px #ddd;
16 background-color: #fcfcfc;
17 /* Click handler in mediawiki.notification.js */
21 -webkit-transform: translateX
( 35px );
22 transform: translateX
( 35px );
23 -webkit-transition: opacity
0.35s ease-in-out
, -webkit-transform
0.35s ease-in-out
;
24 transition: opacity
0.35s ease-in-out
, transform
0.35s ease-in-out
;
27 .mw-notification-visible {
29 -webkit-transform: translateX
( 0 );
30 transform: translateX
( 0 );
33 .mw-notification-replaced {
35 -webkit-transform: translateY
( -35px );
36 transform: translateY
( -35px );
40 .mw-notification-title {
44 .mw-notification-type-warn {
45 border-color: #f5be00; /* yellow */
46 background-color: #ffffe8;
49 .mw-notification-type-error {
50 border-color: #eb3941; /* red */
51 background-color: #fff8f8;