third part of syncing LCARStrek with Firefox 34 windows theme changes
[themes.git] / LCARStrek / browser / devtools / markup-view.css
index d902c38d79e2c83a1b956e997b33c121dff86d71..c1a36b2ee4b34b3ffd26e0df15a3fad5e1f69e6d 100644 (file)
@@ -7,54 +7,78 @@
   margin: 0;
 }
 
-.tagname {
-  color: #FFCF00;
+.more-nodes {
+  padding-left: 16px;
 }
 
-.attrname {
-  color: #9C9CFF;
+.styleinspector-propertyeditor {
+  border: 1px solid #9C9CFF;
 }
 
-.attrvalue {
-  color: #E7ADE7;
-}
 
-.newattr {
-  cursor: pointer;
+/* Selected nodes in the tree should have light selected text.
+   theme-selected doesn't work in this case since the text is a
+   sibling of the class, not a child. */
+.theme-selected ~ .editor,
+.theme-selected ~ .editor .theme-fg-color1,
+.theme-selected ~ .editor .theme-fg-color2,
+.theme-selected ~ .editor .theme-fg-color3,
+.theme-selected ~ .editor .theme-fg-color4,
+.theme-selected ~ .editor .theme-fg-color5,
+.theme-selected ~ .editor .theme-fg-color6,
+.theme-selected ~ .editor .theme-fg-color7 {
+  color: #000000; /* Light foreground text */
 }
 
-.comment {
-  color: #8050B0;
+/* In case a node isn't displayed in the page, we fade the syntax highlighting */
+.not-displayed .open,
+.not-displayed .close {
+  opacity: .7;
 }
 
-.selected {
-  background-color: #008484;
+.tag-line {
+  padding-left: 2px;
 }
 
-/* Give some padding to focusable elements to match the editor input
- * that will replace them. */
-span[tabindex] {
-  display: inline-block;
-  padding: 1px 0;
-}
+/* Preview */
 
-li.container {
-  position: relative;
-  padding: 2px 0 0 2px;
+#previewbar {
+  position: fixed;
+  top: 0;
+  right: 0;
+  width: 90px;
+  background: black;
+  border-left: 1px solid;
+  border-bottom: 1px solid;
+  overflow: hidden;
 }
 
-.codebox {
-  padding-left: 14px;
+#previewbar {
+  background: #000000; /* Tab Toolbar */
+  border-color: #9C9CFF; /* Splitters */
 }
 
-.expander {
+#preview {
   position: absolute;
+  top: 0;
+  right: 5px;
+  width: 80px;
+  height: 100%;
+  background-image: -moz-element(#root);
+  background-repeat: no-repeat;
 }
 
-.more-nodes {
-  padding-left: 16px;
+#previewbar.hide,
+#previewbar.disabled {
+  display: none;
 }
 
-.styleinspector-propertyeditor {
-  border: 1px solid #9C9CFF;
+#viewbox {
+  position: absolute;
+  top: 0;
+  right: 5px;
+  width: 80px;
+  border: 1px dashed #9C9CFF;
+  background: #000000;
+  outline: 1px solid transparent;
 }