| 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 | |
| 5 | * { |
| 6 | padding: 0; |
| 7 | margin: 0; |
| 8 | } |
| 9 | |
| 10 | .tagname { |
| 11 | color: #FFCF00; |
| 12 | } |
| 13 | |
| 14 | .attrname { |
| 15 | color: #9C9CFF; |
| 16 | } |
| 17 | |
| 18 | .attrvalue { |
| 19 | color: #E7ADE7; |
| 20 | } |
| 21 | |
| 22 | .newattr { |
| 23 | cursor: pointer; |
| 24 | } |
| 25 | |
| 26 | .comment { |
| 27 | color: #8050B0; |
| 28 | } |
| 29 | |
| 30 | .selected { |
| 31 | background-color: #008484; |
| 32 | } |
| 33 | |
| 34 | /* Give some padding to focusable elements to match the editor input |
| 35 | * that will replace them. */ |
| 36 | span[tabindex] { |
| 37 | display: inline-block; |
| 38 | padding: 1px 0; |
| 39 | } |
| 40 | |
| 41 | li.container { |
| 42 | position: relative; |
| 43 | padding: 2px 0 0 2px; |
| 44 | } |
| 45 | |
| 46 | .codebox { |
| 47 | padding-left: 14px; |
| 48 | } |
| 49 | |
| 50 | .expander { |
| 51 | position: absolute; |
| 52 | } |
| 53 | |
| 54 | .more-nodes { |
| 55 | padding-left: 16px; |
| 56 | } |
| 57 | |
| 58 | .styleinspector-propertyeditor { |
| 59 | border: 1px solid #9C9CFF; |
| 60 | } |