finish update for both themes for changes in browser winstripe in Firefox 19 cycle
authorRobert Kaiser <robert@widebook.box.kairo.at>
Sun, 20 Jan 2013 20:09:59 +0000 (21:09 +0100)
committerRobert Kaiser <robert@widebook.box.kairo.at>
Sun, 20 Jan 2013 20:09:59 +0000 (21:09 +0100)
LCARStrek/browser/browser.css
LCARStrek/browser/devtools/debugger.css
LCARStrek/browser/devtools/webconsole_networkpanel.css
LCARStrek/browser/downloads/download-glow.png
LCARStrek/browser/downloads/downloads.css

index e33965faf6cf0cbaff8dbbde679bbf0ee30ec70d..32d898e8bf16bb52336cb69929a7ae63d53f0caf 100644 (file)
@@ -2281,6 +2281,23 @@ window:not([chromehidden~=toolbar]) #navigator-toolbox[iconsize=large][mode=icon
   list-style-image: url("chrome://mozapps/skin/plugins/pluginGeneric-16.png");
 }
 
+#blocked-plugins-notification-icon {
+  list-style-image: url("chrome://mozapps/skin/plugins/notifyPluginBlocked.png");
+}
+
+#blocked-plugins-notification-icon[showing] {
+  animation: pluginBlockedNotification 500ms ease 0s 5 alternate both;
+}
+
+@keyframes pluginBlockedNotification {
+  from {
+    opacity: 0;
+  }
+  to {
+    opacity: 1;
+  }
+}
+
 #webRTC-notification-icon {
   list-style-image: url("chrome://browser/skin/webRTC-shareDevice-16.png");
 }
@@ -3241,13 +3258,13 @@ html|*#gcli-output-frame {
 }
 
 /* social toolbar provider menu */
-#social-statusarea-popup {
+.social-statusarea-popup {
   margin-top: 0;
   margin-left: -12px;
   margin-right: -12px;
 }
 
-#social-statusarea-user {
+.social-statusarea-user {
   border-bottom: 1px solid #9C9CFF;
   background-color: #000000;
   color: #FF9F00;
@@ -3255,14 +3272,14 @@ html|*#gcli-output-frame {
   cursor: pointer;
 }
 
-#social-statusarea-user-portrait {
+.social-statusarea-user-portrait {
   width: 32px;
   height: 32px;
   border-radius: 2px;
   margin: 10px;
 }
 
-#social-statusarea-user > vbox > .link {
+.social-statusarea-loggedInStatus {
   background: transparent;
   border: none;
   color: #3333FF;
@@ -3271,7 +3288,7 @@ html|*#gcli-output-frame {
   list-style-image: none;
 }
 
-#social-statusarea-user[_moz-menuactive] > vbox > .link {
+#social-statusarea-user[_moz-menuactive] > vbox > .social-statusarea-loggedInStatus {
   text-decoration: underline;
 }
 
index 2c5c885229441337d9ed9d8cfe7b40ab90e660a7..3b8f7d6540b9a14ca3a9b095d3888e46e83223d5 100644 (file)
@@ -143,12 +143,26 @@ window {
   transition: margin 0.25s ease-in-out;
 }
 
+/**
+ * Variables and watch expressions pane
+ */
+
+#variables\+expressions {
+  background-color: #000000;
+  min-width: 50px;
+}
+
+#variables\+expressions[animated] {
+  transition: margin 0.25s ease-in-out;
+}
+
 /**
  * Stack frames view
  */
 
 #stackframes {
   /* background-color: white; */
+  min-height: 10px;
 }
 
 .dbg-stackframe {
@@ -157,16 +171,29 @@ window {
 }
 
 .dbg-stackframe-name {
-  -moz-padding-end: 4px;
   font-weight: 600;
 }
 
+.dbg-stackframe-details {
+  -moz-padding-start: 4px;
+}
+
 /**
  * Breakpoints view
  */
 
 #breakpoints {
   background-color: #000000;
+  min-height: 10px;
+}
+
+#breakpoints > vbox:not(:empty) {
+  min-height: 10px;
+  max-height: 200px;
+}
+
+.dbg-breakpoint:not(:last-child) {
+  border-bottom: 1px solid #008484;
 }
 
 .dbg-breakpoint-info {
@@ -177,17 +204,54 @@ window {
   font: 12px "Liberation Mono", Consolas, "Courier New", monospace;
 }
 
+#conditional-breakpoint-panel .description {
+  margin: -6px 0 8px 0;
+}
+
+#conditional-breakpoint-panel textbox {
+  margin: 0 0 -2px 0;
+}
+
+/**
+ * Watch expressions view
+ */
+
+#expressions {
+  background-color: #000000;
+  min-height: 10px;
+}
+
+.dbg-expression {
+  height: 20px;
+  -moz-padding-start: 8px;
+}
+
+.dbg-expression-arrow {
+  width: 10px;
+  height: auto;
+  background: url("chrome://browser/skin/devtools/commandline.png") 0px 4px no-repeat;
+}
+
+.dbg-expression-input {
+  font: 9pt monospace;
+}
+
+.dbg-expression-delete {
+  -moz-image-region: rect(0, 32px, 16px, 16px);
+}
+
 /**
  * Variables view
  */
 
 #variables {
 /*  background-color: white; */
-  min-width: 50px;
+  min-height: 10px;
 }
 
-#variables[animated] {
-  transition: margin 0.25s ease-in-out;
+.dbg-variables-delete:not(:hover) {
+  -moz-image-region: rect(0, 32px, 16px, 16px);
+  opacity: 0.5;
 }
 
 /**
@@ -216,22 +280,14 @@ window {
 .variable {
   -moz-margin-start: 1px;
   -moz-margin-end: 1px;
-  transition: background 1s ease-in-out;
+  border-bottom: 1px solid #008484;
   background: #000000;
-}
-
-.variable:not(:last-child) {
-  border-bottom: 1px dotted #008484;
-  border-radius: 8px;
-}
-
-.variable:last-child {
-  margin-bottom: 2px;
+  transition: background 1s ease-in-out;
 }
 
 .variable[changed] {
-  transition-duration: 0.4s;
   background: #FFCF00;
+  transition-duration: 0.4s;
 }
 
 .variable > .title > .name {
@@ -241,6 +297,7 @@ window {
 
 .variable > .title > .value {
   -moz-padding-start: 6px;
+  -moz-padding-end: 4px;
 }
 
 .variable:not([non-header]) > .details {
@@ -268,6 +325,7 @@ window {
 
 .property > .title > .value {
   -moz-padding-start: 6px;
+  -moz-padding-end: 4px;
 }
 
 .property:not([non-header]) > .details {
@@ -334,6 +392,20 @@ window {
   text-decoration: line-through;
 }
 
+/**
+ * Variables and properties editing
+ */
+
+#variables .element-value-input {
+  -moz-margin-start: 5px !important;
+}
+
+#variables .element-name-input {
+  -moz-margin-start: -1px !important;
+  color: #E7ADE7;
+  font-weight: 600;
+}
+
 /**
  * Variables and properties searching
  */
@@ -405,30 +477,6 @@ window {
   visibility: hidden;
 }
 
-/**
- * Animations
- */
-
-#variables .details[open][animated],
-#globalsearch .dbg-results-container[open][animated] {
-  animation-duration: 0.25s;
-  animation-name: showblock;
-}
-
-@keyframes showblock {
-  from {
-    opacity: 0;
-    transform-origin: top;
-    transform: scaleY(0);
-  }
-
-  to {
-    opacity: 1;
-    transform-origin: top;
-    transform: scaleY(1);
-  }
-}
-
 /**
  * Toolbar Controls
  */
index b5fcb185142054dc9f8caea7f1fb8efc7f7e1dcb..4a8db600a64f3f390ccce914304858fe5b33aaaa 100644 (file)
@@ -80,3 +80,16 @@ img#responseImageNode {
 #responseImageNodeDiv {
   padding: 5px;
 }
+
+#responseBodyFetchLink, #requestBodyFetchLink {
+  padding: 5px;
+  margin: 0;
+  cursor: pointer;
+  font-weight: bold;
+  font-size: 1.1em;
+  text-decoration: underline;
+}
+
+.longStringEllipsis {
+  margin-left: 0.6em;
+}
index fb6f1f08709ae829783cde57de7ee34952f3f01d..0dc64c0a1bdeed54560b9f97bc74e5ca8539d3cc 100644 (file)
Binary files a/LCARStrek/browser/downloads/download-glow.png and b/LCARStrek/browser/downloads/download-glow.png differ
index d2c4098cd1cfe40f8f173bf538239d215adf48cf..0f05eff9c91813eba5eea8a3e002cc5c6a715458 100644 (file)
   color: inherit;
 }
 
+#downloadsPanel:not([hasdownloads]) > #downloadsListBox {
+  display: none;
+}
+
 #downloadsHistory {
   background: transparent;
   color: #9C9CFF;
   margin: 1em;
 }
 
-/*** List items ***/
+/*** Downloads Summary and List items ***/
 
+#downloadsSummary,
 richlistitem[type="download"] {
   height: 7em;
+  -moz-padding-end: 0;
+  color: inherit;
+}
+
+#downloadsSummary {
+  padding: 8px 38px 8px 12px;
+  cursor: pointer;
+}
+
+#downloadsSummary > .downloadTypeIcon {
+  height: 24px;
+  width: 24px;
+  list-style-image: url("chrome://mozapps/skin/downloads/downloadIcon.png");
+}
+
+#downloadsSummaryDescription {
+  color: -moz-nativehyperlinktext;
+}
+
+richlistitem[type="download"] {
   margin: 0;
   border-bottom: 1px dotted #9C9CFF;
   background: transparent;
   padding: 8px;
-  -moz-padding-end: 0;
-  color: inherit;
 }
 
 richlistitem[type="download"]:first-child {
@@ -147,8 +170,7 @@ richlistitem[type="download"][state="1"]:hover {
 }
 
 #downloads-indicator[attention] > #downloads-indicator-anchor > #downloads-indicator-icon {
-  background: -moz-image-rect(url("chrome://browser/skin/downloads/download-glow.png"),
-                              15, 33, 33, 15) center no-repeat;
+  background-image: url("chrome://browser/skin/downloads/download-glow.png");
 }
 
 #downloads-indicator:not([counter]) > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter {
@@ -158,8 +180,7 @@ richlistitem[type="download"][state="1"]:hover {
 }
 
 #downloads-indicator:not([counter])[attention] > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter {
-  background-image: -moz-image-rect(url("chrome://browser/skin/downloads/download-glow.png"),
-                                    16, 32, 32, 16);
+  background-image: url("chrome://browser/skin/downloads/download-glow.png");
 }
 
 #downloads-indicator:not([counter]):hover > #downloads-indicator-anchor > #downloads-indicator-progress-area > #downloads-indicator-counter,
@@ -201,17 +222,17 @@ richlistitem[type="download"][state="1"]:hover {
 /*** Progress bar and text ***/
 
 #downloads-indicator-counter {
-  height: 10px;
-  margin: 0;
+  height: 9px;
+  margin: -3px 0 0;
   color: #FFCF00;
-  font-size: 10px;
-  line-height: 10px;
+  font-size: 9px;
+  line-height: 9px;
   text-align: center;
 }
 
 #downloads-indicator-progress {
   width: 16px;
-  height: 6px;
+  height: 5px;
   min-width: 0;
   min-height: 0;
   margin-top: 1px;