Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | /* Manifest Editor overrides */ |
michael@0 | 6 | |
michael@0 | 7 | .variables-view-container.manifest-editor { |
michael@0 | 8 | background-color: #F5F5F5; |
michael@0 | 9 | padding: 20px 2px; |
michael@0 | 10 | } |
michael@0 | 11 | |
michael@0 | 12 | .manifest-editor .variable-or-property:focus > .title { |
michael@0 | 13 | background-color: #EDEDED; |
michael@0 | 14 | color: #000; |
michael@0 | 15 | border-radius: 4px; |
michael@0 | 16 | } |
michael@0 | 17 | |
michael@0 | 18 | .manifest-editor .variables-view-property > .title > .name { |
michael@0 | 19 | color: #27406A; |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | .manifest-editor .variable-or-property > .title > label, |
michael@0 | 23 | .manifest-editor textbox { |
michael@0 | 24 | font-family: monospace; |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | .manifest-editor .variable-or-property > .title > .token-string { |
michael@0 | 28 | color: #54BC6A; |
michael@0 | 29 | font-weight: bold; |
michael@0 | 30 | } |
michael@0 | 31 | |
michael@0 | 32 | .manifest-editor .variable-or-property > .title > .token-boolean, |
michael@0 | 33 | .manifest-editor .variable-or-property > .title > .token-number { |
michael@0 | 34 | color: #009BD4; |
michael@0 | 35 | font-weight: bold; |
michael@0 | 36 | } |
michael@0 | 37 | |
michael@0 | 38 | .manifest-editor .variable-or-property > .title > .token-undefined { |
michael@0 | 39 | color: #bbb; |
michael@0 | 40 | } |
michael@0 | 41 | |
michael@0 | 42 | .manifest-editor .variable-or-property > .title > .token-null { |
michael@0 | 43 | color: #999; |
michael@0 | 44 | } |
michael@0 | 45 | |
michael@0 | 46 | .manifest-editor .variable-or-property > .title > .token-other { |
michael@0 | 47 | color: #333; |
michael@0 | 48 | } |
michael@0 | 49 | |
michael@0 | 50 | .manifest-editor .variables-view-variable { |
michael@0 | 51 | border-bottom: none; |
michael@0 | 52 | } |
michael@0 | 53 | |
michael@0 | 54 | .manifest-editor .variables-view-delete, |
michael@0 | 55 | .manifest-editor .variables-view-delete:hover, |
michael@0 | 56 | .manifest-editor .variables-view-delete:active, |
michael@0 | 57 | .manifest-editor .variable-or-property:focus .variables-view-delete, |
michael@0 | 58 | .manifest-editor .variables-view-add-property, |
michael@0 | 59 | .manifest-editor .variables-view-add-property:hover, |
michael@0 | 60 | .manifest-editor .variables-view-add-property:active, |
michael@0 | 61 | .manifest-editor .variable-or-property:focus .variables-view-add-property { |
michael@0 | 62 | list-style-image: none; |
michael@0 | 63 | -moz-image-region: initial; |
michael@0 | 64 | } |
michael@0 | 65 | |
michael@0 | 66 | .manifest-editor .variables-view-delete::before, |
michael@0 | 67 | .manifest-editor .variables-view-add-property::before { |
michael@0 | 68 | width: 11px; |
michael@0 | 69 | height: 11px; |
michael@0 | 70 | content: ""; |
michael@0 | 71 | display: inline-block; |
michael@0 | 72 | background-size: 11px auto; |
michael@0 | 73 | } |
michael@0 | 74 | |
michael@0 | 75 | .manifest-editor .variables-view-delete::before { |
michael@0 | 76 | background-image: url("app-manager/remove.svg"); |
michael@0 | 77 | } |
michael@0 | 78 | |
michael@0 | 79 | .manifest-editor .variables-view-add-property::before { |
michael@0 | 80 | background-image: url("app-manager/add.svg"); |
michael@0 | 81 | -moz-margin-end: 2px; |
michael@0 | 82 | } |