ginebra2/chrome/bedrockchrome/prompt.snippet/prompt.css
changeset 6 1c3b8676e58c
child 16 3c88a81ff781
equal deleted inserted replaced
5:0f2326c2a325 6:1c3b8676e58c
       
     1 /* Network status (error) dialog styles. */
       
     2 
       
     3 .promptBox {
       
     4     background: -webkit-gradient(linear, left top, left bottom, from(#546b8f), to(#3b4c69), color-stop(0.0, #aab));
       
     5     -webkit-user-select: none;
       
     6 
       
     7     padding: 10px;
       
     8     color: #fff;
       
     9 
       
    10     border-radius: 7px;
       
    11 
       
    12     border-style: solid;
       
    13     border-width: 4px;
       
    14     border-color: #243447;
       
    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