ginebra2/chrome/bedrockchrome/networkstatus.snippet/networkstatusTenone.css
changeset 16 3c88a81ff781
equal deleted inserted replaced
14:6aeb7a756187 16:3c88a81ff781
       
     1 /* Network status (error) dialog styles. */
       
     2 
       
     3 .networkStatusBox {
       
     4     -webkit-user-select: none;
       
     5 
       
     6     padding: 10px;
       
     7     color: white;
       
     8 
       
     9     border-radius: 7px;
       
    10 
       
    11     border: 3px solid #aaaaab;
       
    12     background: -webkit-gradient(linear, left top, left bottom, from(#060808), to(#a8a8a8), color-stop(0.5, #777779));
       
    13     /*font specification*/
       
    14     font-family: "Series 60 Sans", "Nokia Sans S60", sans-serif;
       
    15 }
       
    16 
       
    17 .networkStatusBoxMaemo {
       
    18     background: black;
       
    19     -webkit-user-select: none;
       
    20 
       
    21     padding: 10px;
       
    22     color: #fff;
       
    23 
       
    24     border-radius: 7px;
       
    25 
       
    26     border-style: solid;
       
    27     border-width: 4px;
       
    28     border-color: #243447;
       
    29 }
       
    30 
       
    31 .networkStatusBox img {
       
    32     vertical-align: middle;
       
    33     padding: 0px;
       
    34 }
       
    35 
       
    36 .networkStatusBox ul {
       
    37 	margin: 0px; 
       
    38     padding: 0px;
       
    39 }
       
    40 
       
    41 .networkStatusBox li {
       
    42     list-style-type: none;
       
    43     margin-top: 20px;
       
    44 }
       
    45 
       
    46 .networkStatusBox li:first-child {
       
    47     margin-top: 0px;
       
    48 }
       
    49 
       
    50 .networkStatusBox li:last-child {
       
    51     margin-top: 4px;
       
    52 	margin-bottom: 0px;
       
    53 }
       
    54 
       
    55 .networkStatusText {
       
    56     vertical-align: middle;
       
    57     white-space: nowrap;  
       
    58     overflow: hidden;
       
    59     //border: solid 1px #f00;  
       
    60 }
       
    61 
       
    62 .networkErrorMessage {
       
    63     vertical-align: middle;
       
    64 }
       
    65 
       
    66 /* Second line of URL text, truncate the text and append an ellipsis. */
       
    67 .networkStatusText2 {  
       
    68     vertical-align: middle;
       
    69     white-space: nowrap;
       
    70     overflow: hidden;  
       
    71     text-overflow: ellipsis;
       
    72 } 
       
    73