diff options
Diffstat (limited to 'browser/devtools/styleinspector/ruleview.css')
-rw-r--r-- | browser/devtools/styleinspector/ruleview.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/browser/devtools/styleinspector/ruleview.css b/browser/devtools/styleinspector/ruleview.css new file mode 100644 index 000000000..086e506fc --- /dev/null +++ b/browser/devtools/styleinspector/ruleview.css @@ -0,0 +1,38 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#root { + display: -moz-box; +} + +.ruleview { + overflow: auto; + -moz-user-select: text; +} + +.ruleview-code { + direction: ltr; +} + +.ruleview-property:not(:hover) > .ruleview-enableproperty { + pointer-events: none; +} + +.ruleview-namecontainer { + cursor: text; +} + +.ruleview-propertycontainer { + cursor: text; + padding-right: 15px; +} + +.ruleview-propertycontainer a { + cursor: pointer; +} + +.ruleview-computedlist:not(.styleinspector-open), +.ruleview-warning[hidden] { + display: none; +} |