michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: /* Manifest Editor overrides */ michael@0: michael@0: .variables-view-container.manifest-editor { michael@0: background-color: #F5F5F5; michael@0: padding: 20px 2px; michael@0: } michael@0: michael@0: .manifest-editor .variable-or-property:focus > .title { michael@0: background-color: #EDEDED; michael@0: color: #000; michael@0: border-radius: 4px; michael@0: } michael@0: michael@0: .manifest-editor .variables-view-property > .title > .name { michael@0: color: #27406A; michael@0: } michael@0: michael@0: .manifest-editor .variable-or-property > .title > label, michael@0: .manifest-editor textbox { michael@0: font-family: monospace; michael@0: } michael@0: michael@0: .manifest-editor .variable-or-property > .title > .token-string { michael@0: color: #54BC6A; michael@0: font-weight: bold; michael@0: } michael@0: michael@0: .manifest-editor .variable-or-property > .title > .token-boolean, michael@0: .manifest-editor .variable-or-property > .title > .token-number { michael@0: color: #009BD4; michael@0: font-weight: bold; michael@0: } michael@0: michael@0: .manifest-editor .variable-or-property > .title > .token-undefined { michael@0: color: #bbb; michael@0: } michael@0: michael@0: .manifest-editor .variable-or-property > .title > .token-null { michael@0: color: #999; michael@0: } michael@0: michael@0: .manifest-editor .variable-or-property > .title > .token-other { michael@0: color: #333; michael@0: } michael@0: michael@0: .manifest-editor .variables-view-variable { michael@0: border-bottom: none; michael@0: } michael@0: michael@0: .manifest-editor .variables-view-delete, michael@0: .manifest-editor .variables-view-delete:hover, michael@0: .manifest-editor .variables-view-delete:active, michael@0: .manifest-editor .variable-or-property:focus .variables-view-delete, michael@0: .manifest-editor .variables-view-add-property, michael@0: .manifest-editor .variables-view-add-property:hover, michael@0: .manifest-editor .variables-view-add-property:active, michael@0: .manifest-editor .variable-or-property:focus .variables-view-add-property { michael@0: list-style-image: none; michael@0: -moz-image-region: initial; michael@0: } michael@0: michael@0: .manifest-editor .variables-view-delete::before, michael@0: .manifest-editor .variables-view-add-property::before { michael@0: width: 11px; michael@0: height: 11px; michael@0: content: ""; michael@0: display: inline-block; michael@0: background-size: 11px auto; michael@0: } michael@0: michael@0: .manifest-editor .variables-view-delete::before { michael@0: background-image: url("app-manager/remove.svg"); michael@0: } michael@0: michael@0: .manifest-editor .variables-view-add-property::before { michael@0: background-image: url("app-manager/add.svg"); michael@0: -moz-margin-end: 2px; michael@0: }