cms/drupal/modules/system/system.messages.css
changeset 541 e756a8c72c3d
equal deleted inserted replaced
540:07239de796bb 541:e756a8c72c3d
       
     1 
       
     2 /**
       
     3  * @file
       
     4  * Styles for system messages.
       
     5  */
       
     6 
       
     7 div.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 
       
    15 div.status {
       
    16   background-image: url(../../misc/message-24-ok.png);
       
    17   border-color: #be7;
       
    18 }
       
    19 div.status,
       
    20 .ok {
       
    21   color: #234600;
       
    22 }
       
    23 div.status,
       
    24 table tr.ok {
       
    25   background-color: #f8fff0;
       
    26 }
       
    27 
       
    28 div.warning {
       
    29   background-image: url(../../misc/message-24-warning.png);
       
    30   border-color: #ed5;
       
    31 }
       
    32 div.warning,
       
    33 .warning {
       
    34   color: #840;
       
    35 }
       
    36 div.warning,
       
    37 table tr.warning {
       
    38   background-color: #fffce5;
       
    39 }
       
    40 
       
    41 div.error {
       
    42   background-image: url(../../misc/message-24-error.png);
       
    43   border-color: #ed541d;
       
    44 }
       
    45 div.error,
       
    46 .error {
       
    47   color: #8c2e0b;
       
    48 }
       
    49 div.error,
       
    50 table tr.error {
       
    51   background-color: #fef5f1;
       
    52 }
       
    53 div.error p.error {
       
    54   color: #333;
       
    55 }
       
    56 
       
    57 div.messages ul {
       
    58   margin: 0 0 0 1em; /* LTR */
       
    59   padding: 0;
       
    60 }
       
    61 div.messages ul li {
       
    62   list-style-image: none;
       
    63 }