1 2/** 3 * @file 4 * Styles for system messages. 5 */ 6 7div.messages { 8 background-position: 8px 8px; /* LTR */ 9 background-repeat: no-repeat; 10 border: 1px solid; 11 margin: 6px 0; 12 padding: 10px 10px 10px 50px; /* LTR */ 13} 14 15div.status { 16 background-image: url(../../misc/message-24-ok.png); 17 border-color: #be7; 18} 19div.status, 20.ok { 21 color: #234600; 22} 23div.status, 24table tr.ok { 25 background-color: #f8fff0; 26} 27 28div.warning { 29 background-image: url(../../misc/message-24-warning.png); 30 border-color: #ed5; 31} 32div.warning, 33.warning { 34 color: #840; 35} 36div.warning, 37table tr.warning { 38 background-color: #fffce5; 39} 40 41div.error { 42 background-image: url(../../misc/message-24-error.png); 43 border-color: #ed541d; 44} 45div.error, 46.error { 47 color: #8c2e0b; 48} 49div.error, 50table tr.error { 51 background-color: #fef5f1; 52} 53div.error p.error { 54 color: #333; 55} 56 57div.messages ul { 58 margin: 0 0 0 1em; /* LTR */ 59 padding: 0; 60} 61div.messages ul li { 62 list-style-image: none; 63} 64