ginebra2/chrome/bedrockchrome/networkstatus.snippet/networkstatus.css
changeset 3 0954f5dd2cd0
parent 0 1450b09d0cfd
child 12 afcd8e6d025b
--- a/ginebra2/chrome/bedrockchrome/networkstatus.snippet/networkstatus.css	Fri May 14 15:40:36 2010 +0300
+++ b/ginebra2/chrome/bedrockchrome/networkstatus.snippet/networkstatus.css	Tue Jun 29 00:46:29 2010 -0400
@@ -1,44 +1,55 @@
-.NetworkError {
-    font-family: arial;
-    font-size: 14px;
-    margin: 5px;
-    height: 20px;
-    width: 100%;
-    color: red;
-    background-color: white;
-}
+/* Network status (error) dialog styles. */
 
 .networkStatusBox {
-    background-color: #253148;
-    opacity: 0.9;
-
-    height: 50px;
-
+    background: -webkit-gradient(linear, left top, left bottom, from(#546b8f), to(#3b4c69), color-stop(0.0, #aab));
     -webkit-user-select: none;
 
-    padding: 15px;
+    padding: 10px;
+    color: #fff;
 
-    border-radius: 15px;
+    border-radius: 7px;
 
     border-style: solid;
     border-width: 4px;
-    border-color: gray;
+    border-color: #243447;
+}
+
+.networkStatusBox img {
+    vertical-align: middle;
+    padding: 0px;
+}
+
+.networkStatusBox ul {
+	margin: 0px; 
+    padding: 0px;
 }
 
-.networkStatusIcon {
-    vertical-align: middle;
+.networkStatusBox li {
+    list-style-type: none;
+    margin-top: 20px;
+}
 
-    height: 24px;
-    width:  24px;
+.networkStatusBox li:first-child {
+    margin-top: 0px;
+}
+
+.networkStatusBox li:last-child {
+    margin-top: 4px;
+	margin-bottom: 0px;
 }
 
 .networkStatusText {
     vertical-align: middle;
-
-    color: red;
-
-    font-size: 16px;
-    font-family: Verdana;
-    font-weight: bold;
+    white-space: nowrap;  
+    overflow: hidden;
+    //border: solid 1px #f00;  
 }
 
+/* Second line of URL text, truncate the text and append an ellipsis. */
+.networkStatusText2 {  
+    vertical-align: middle;
+    white-space: nowrap;
+    overflow: hidden;  
+    text-overflow: ellipsis;
+} 
+