1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/shared/widgets/widgets.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,106 @@ 1.4 +/* vim:set ts=2 sw=2 sts=2 et: */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +/* BreacrumbsWidget */ 1.10 + 1.11 +.breadcrumbs-widget-item { 1.12 + direction: ltr; 1.13 +} 1.14 + 1.15 +.breadcrumbs-widget-item { 1.16 + -moz-user-focus: normal; 1.17 +} 1.18 + 1.19 +/* SimpleListWidget */ 1.20 + 1.21 +.simple-list-widget-container { 1.22 + overflow-x: hidden; 1.23 + overflow-y: auto; 1.24 +} 1.25 + 1.26 +/* FastListWidget */ 1.27 + 1.28 +.fast-list-widget-container { 1.29 + overflow: auto; 1.30 +} 1.31 + 1.32 +/* SideMenuWidget */ 1.33 + 1.34 +.side-menu-widget-container { 1.35 + overflow-x: hidden; 1.36 + overflow-y: auto; 1.37 +} 1.38 + 1.39 +.side-menu-widget-item-contents { 1.40 + -moz-user-focus: normal; 1.41 +} 1.42 + 1.43 +.side-menu-widget-group-checkbox .checkbox-label-box, 1.44 +.side-menu-widget-item-checkbox .checkbox-label-box { 1.45 + display: none; /* See bug 669507 */ 1.46 +} 1.47 + 1.48 +/* VariablesView */ 1.49 + 1.50 +.variables-view-container { 1.51 + overflow-x: hidden; 1.52 + overflow-y: auto; 1.53 +} 1.54 + 1.55 +.variables-view-element-details:not([open]) { 1.56 + display: none; 1.57 +} 1.58 + 1.59 +.variables-view-scope, 1.60 +.variable-or-property { 1.61 + -moz-user-focus: normal; 1.62 +} 1.63 + 1.64 +.variables-view-scope > .title, 1.65 +.variable-or-property > .title { 1.66 + overflow: hidden; 1.67 +} 1.68 + 1.69 +.variables-view-scope[untitled] > .title, 1.70 +.variable-or-property[untitled] > .title, 1.71 +.variable-or-property[unmatched] > .title { 1.72 + display: none; 1.73 +} 1.74 + 1.75 +.variable-or-property:not([safe-getter]) > tooltip > label.WebIDL, 1.76 +.variable-or-property:not([overridden]) > tooltip > label.overridden, 1.77 +.variable-or-property:not([non-extensible]) > tooltip > label.extensible, 1.78 +.variable-or-property:not([frozen]) > tooltip > label.frozen, 1.79 +.variable-or-property:not([sealed]) > tooltip > label.sealed { 1.80 + display: none; 1.81 +} 1.82 + 1.83 +.variable-or-property[pseudo-item] > tooltip, 1.84 +.variable-or-property[pseudo-item] > .title > .variables-view-edit, 1.85 +.variable-or-property[pseudo-item] > .title > .variables-view-open-inspector, 1.86 +.variable-or-property[pseudo-item] > .title > .variables-view-delete, 1.87 +.variable-or-property[pseudo-item] > .title > .variables-view-add-property, 1.88 +.variable-or-property[pseudo-item] > .title > .variable-or-property-frozen-label, 1.89 +.variable-or-property[pseudo-item] > .title > .variable-or-property-sealed-label, 1.90 +.variable-or-property[pseudo-item] > .title > .variable-or-property-non-extensible-label, 1.91 +.variable-or-property[pseudo-item] > .title > .variable-or-property-non-writable-icon { 1.92 + display: none; 1.93 +} 1.94 + 1.95 +*:not(:hover) .variables-view-delete, 1.96 +*:not(:hover) .variables-view-open-inspector, 1.97 +*:not(:hover) .variables-view-add-property { 1.98 + visibility: hidden; 1.99 +} 1.100 + 1.101 +.variables-view-delete > .toolbarbutton-text, 1.102 +.variables-view-open-inspector > .toolbarbutton-text, 1.103 +.variables-view-add-property > .toolbarbutton-text { 1.104 + display: none; 1.105 +} 1.106 + 1.107 +.variables-view-container[aligned-values] [optional-visibility] { 1.108 + display: none; 1.109 +}