browser/devtools/shared/widgets/widgets.css

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

michael@0 1 /* vim:set ts=2 sw=2 sts=2 et: */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 /* BreacrumbsWidget */
michael@0 7
michael@0 8 .breadcrumbs-widget-item {
michael@0 9 direction: ltr;
michael@0 10 }
michael@0 11
michael@0 12 .breadcrumbs-widget-item {
michael@0 13 -moz-user-focus: normal;
michael@0 14 }
michael@0 15
michael@0 16 /* SimpleListWidget */
michael@0 17
michael@0 18 .simple-list-widget-container {
michael@0 19 overflow-x: hidden;
michael@0 20 overflow-y: auto;
michael@0 21 }
michael@0 22
michael@0 23 /* FastListWidget */
michael@0 24
michael@0 25 .fast-list-widget-container {
michael@0 26 overflow: auto;
michael@0 27 }
michael@0 28
michael@0 29 /* SideMenuWidget */
michael@0 30
michael@0 31 .side-menu-widget-container {
michael@0 32 overflow-x: hidden;
michael@0 33 overflow-y: auto;
michael@0 34 }
michael@0 35
michael@0 36 .side-menu-widget-item-contents {
michael@0 37 -moz-user-focus: normal;
michael@0 38 }
michael@0 39
michael@0 40 .side-menu-widget-group-checkbox .checkbox-label-box,
michael@0 41 .side-menu-widget-item-checkbox .checkbox-label-box {
michael@0 42 display: none; /* See bug 669507 */
michael@0 43 }
michael@0 44
michael@0 45 /* VariablesView */
michael@0 46
michael@0 47 .variables-view-container {
michael@0 48 overflow-x: hidden;
michael@0 49 overflow-y: auto;
michael@0 50 }
michael@0 51
michael@0 52 .variables-view-element-details:not([open]) {
michael@0 53 display: none;
michael@0 54 }
michael@0 55
michael@0 56 .variables-view-scope,
michael@0 57 .variable-or-property {
michael@0 58 -moz-user-focus: normal;
michael@0 59 }
michael@0 60
michael@0 61 .variables-view-scope > .title,
michael@0 62 .variable-or-property > .title {
michael@0 63 overflow: hidden;
michael@0 64 }
michael@0 65
michael@0 66 .variables-view-scope[untitled] > .title,
michael@0 67 .variable-or-property[untitled] > .title,
michael@0 68 .variable-or-property[unmatched] > .title {
michael@0 69 display: none;
michael@0 70 }
michael@0 71
michael@0 72 .variable-or-property:not([safe-getter]) > tooltip > label.WebIDL,
michael@0 73 .variable-or-property:not([overridden]) > tooltip > label.overridden,
michael@0 74 .variable-or-property:not([non-extensible]) > tooltip > label.extensible,
michael@0 75 .variable-or-property:not([frozen]) > tooltip > label.frozen,
michael@0 76 .variable-or-property:not([sealed]) > tooltip > label.sealed {
michael@0 77 display: none;
michael@0 78 }
michael@0 79
michael@0 80 .variable-or-property[pseudo-item] > tooltip,
michael@0 81 .variable-or-property[pseudo-item] > .title > .variables-view-edit,
michael@0 82 .variable-or-property[pseudo-item] > .title > .variables-view-open-inspector,
michael@0 83 .variable-or-property[pseudo-item] > .title > .variables-view-delete,
michael@0 84 .variable-or-property[pseudo-item] > .title > .variables-view-add-property,
michael@0 85 .variable-or-property[pseudo-item] > .title > .variable-or-property-frozen-label,
michael@0 86 .variable-or-property[pseudo-item] > .title > .variable-or-property-sealed-label,
michael@0 87 .variable-or-property[pseudo-item] > .title > .variable-or-property-non-extensible-label,
michael@0 88 .variable-or-property[pseudo-item] > .title > .variable-or-property-non-writable-icon {
michael@0 89 display: none;
michael@0 90 }
michael@0 91
michael@0 92 *:not(:hover) .variables-view-delete,
michael@0 93 *:not(:hover) .variables-view-open-inspector,
michael@0 94 *:not(:hover) .variables-view-add-property {
michael@0 95 visibility: hidden;
michael@0 96 }
michael@0 97
michael@0 98 .variables-view-delete > .toolbarbutton-text,
michael@0 99 .variables-view-open-inspector > .toolbarbutton-text,
michael@0 100 .variables-view-add-property > .toolbarbutton-text {
michael@0 101 display: none;
michael@0 102 }
michael@0 103
michael@0 104 .variables-view-container[aligned-values] [optional-visibility] {
michael@0 105 display: none;
michael@0 106 }

mercurial