mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
57 lines
977 B
CSS
57 lines
977 B
CSS
/* 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;
|
|
}
|
|
|
|
.helplink {
|
|
display: block;
|
|
}
|
|
|
|
.expander,
|
|
.property-name,
|
|
.ruleview-propertyname,
|
|
.ruleview-warning,
|
|
.ruleview-expander {
|
|
display: inline-block;
|
|
}
|
|
|
|
#propertyContainer {
|
|
display: -moz-box;
|
|
-moz-box-orient: vertical;
|
|
-moz-box-flex: 1;
|
|
overflow-y: auto;
|
|
-moz-user-select: text;
|
|
}
|
|
|
|
.ruleview {
|
|
overflow: auto;
|
|
-moz-user-select: text;
|
|
}
|
|
|
|
.property-view-hidden,
|
|
.property-content-hidden,
|
|
.ruleview-computedlist:not(.styleinspector-open),
|
|
.ruleview-warning[hidden] {
|
|
display: none;
|
|
}
|
|
|
|
.ruleview-code {
|
|
direction: ltr;
|
|
}
|
|
|
|
.ruleview-property:not(:hover) > .ruleview-enableproperty {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.ruleview-namecontainer {
|
|
cursor: text;
|
|
}
|
|
|
|
.ruleview-propertycontainer {
|
|
cursor: text;
|
|
padding-right: 15px;
|
|
}
|