ginebra2/chrome/bedrockchrome/networkstatus.snippet/networkstatus.css
changeset 3 0954f5dd2cd0
parent 0 1450b09d0cfd
child 12 afcd8e6d025b
equal deleted inserted replaced
1:b0dd75e285d2 3:0954f5dd2cd0
     1 .NetworkError {
     1 /* Network status (error) dialog styles. */
     2     font-family: arial;
       
     3     font-size: 14px;
       
     4     margin: 5px;
       
     5     height: 20px;
       
     6     width: 100%;
       
     7     color: red;
       
     8     background-color: white;
       
     9 }
       
    10 
     2 
    11 .networkStatusBox {
     3 .networkStatusBox {
    12     background-color: #253148;
     4     background: -webkit-gradient(linear, left top, left bottom, from(#546b8f), to(#3b4c69), color-stop(0.0, #aab));
    13     opacity: 0.9;
       
    14 
       
    15     height: 50px;
       
    16 
       
    17     -webkit-user-select: none;
     5     -webkit-user-select: none;
    18 
     6 
    19     padding: 15px;
     7     padding: 10px;
       
     8     color: #fff;
    20 
     9 
    21     border-radius: 15px;
    10     border-radius: 7px;
    22 
    11 
    23     border-style: solid;
    12     border-style: solid;
    24     border-width: 4px;
    13     border-width: 4px;
    25     border-color: gray;
    14     border-color: #243447;
    26 }
    15 }
    27 
    16 
    28 .networkStatusIcon {
    17 .networkStatusBox img {
    29     vertical-align: middle;
    18     vertical-align: middle;
       
    19     padding: 0px;
       
    20 }
    30 
    21 
    31     height: 24px;
    22 .networkStatusBox ul {
    32     width:  24px;
    23 	margin: 0px; 
       
    24     padding: 0px;
       
    25 }
       
    26 
       
    27 .networkStatusBox li {
       
    28     list-style-type: none;
       
    29     margin-top: 20px;
       
    30 }
       
    31 
       
    32 .networkStatusBox li:first-child {
       
    33     margin-top: 0px;
       
    34 }
       
    35 
       
    36 .networkStatusBox li:last-child {
       
    37     margin-top: 4px;
       
    38 	margin-bottom: 0px;
    33 }
    39 }
    34 
    40 
    35 .networkStatusText {
    41 .networkStatusText {
    36     vertical-align: middle;
    42     vertical-align: middle;
    37 
    43     white-space: nowrap;  
    38     color: red;
    44     overflow: hidden;
    39 
    45     //border: solid 1px #f00;  
    40     font-size: 16px;
       
    41     font-family: Verdana;
       
    42     font-weight: bold;
       
    43 }
    46 }
    44 
    47 
       
    48 /* Second line of URL text, truncate the text and append an ellipsis. */
       
    49 .networkStatusText2 {  
       
    50     vertical-align: middle;
       
    51     white-space: nowrap;
       
    52     overflow: hidden;  
       
    53     text-overflow: ellipsis;
       
    54 } 
       
    55