ginebra2/chrome/bedrockchrome/prompt.snippet/promptTenone.css
changeset 16 3c88a81ff781
equal deleted inserted replaced
14:6aeb7a756187 16:3c88a81ff781
       
     1 /* Network status (error) dialog styles. */
       
     2 
       
     3 .promptBox {
       
     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 .promptBox img {
       
    18     vertical-align: middle;
       
    19     padding: 0px;
       
    20 }
       
    21 
       
    22 .promptBox ul {
       
    23 	margin: 0px; 
       
    24     padding: 0px;
       
    25 }
       
    26 
       
    27 .promptBox li {
       
    28     list-style-type: none;
       
    29     margin-top: 20px;
       
    30 }
       
    31 
       
    32 .promptBox li:first-child {
       
    33     margin-top: 0px;
       
    34 }
       
    35 
       
    36 .promptBox li:last-child {
       
    37     margin-top: 4px;
       
    38 	margin-bottom: 0px;
       
    39 }
       
    40 
       
    41 .promptText {
       
    42     vertical-align: middle;
       
    43     white-space: nowrap;  
       
    44     overflow: hidden;
       
    45     //border: solid 1px #f00;  
       
    46 }
       
    47 
       
    48 /* Second line of URL text, truncate the text and append an ellipsis. */
       
    49 .promptText2 {  
       
    50     vertical-align: middle;
       
    51     white-space: nowrap;
       
    52     overflow: hidden;  
       
    53     text-overflow: ellipsis;
       
    54 } 
       
    55