2013-02-20 15:33:36 -08:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
/* BreacrumbsWidget */
|
|
|
|
|
|
|
|
.breadcrumbs-widget-item {
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
2013-06-05 23:53:08 -07:00
|
|
|
.breadcrumbs-widget-item {
|
|
|
|
-moz-user-focus: normal;
|
|
|
|
}
|
|
|
|
|
2013-02-20 15:33:36 -08:00
|
|
|
/* SideMenuWidget */
|
|
|
|
|
|
|
|
.side-menu-widget-container {
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
2013-05-24 11:36:51 -07:00
|
|
|
.side-menu-widget-item-contents {
|
|
|
|
-moz-user-focus: normal;
|
|
|
|
}
|
|
|
|
|
2013-02-20 15:33:36 -08:00
|
|
|
/* VariablesView */
|
|
|
|
|
|
|
|
.variables-view-container {
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.variables-view-element-details:not([open]) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.variables-view-scope,
|
|
|
|
.variable-or-property {
|
|
|
|
-moz-user-focus: normal;
|
|
|
|
}
|
|
|
|
|
2013-04-17 23:35:26 -07:00
|
|
|
.variables-view-scope > .title,
|
|
|
|
.variable-or-property > .title {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2013-02-20 15:33:36 -08:00
|
|
|
.variables-view-scope[non-header] > .title,
|
|
|
|
.variable-or-property[non-header] > .title,
|
|
|
|
.variable-or-property[non-match] > .title {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-06-21 07:33:56 -07:00
|
|
|
|
2013-06-21 07:33:57 -07:00
|
|
|
.variable-or-property:not([safe-getter]) > tooltip > label[value=WebIDL],
|
2013-06-21 07:33:56 -07:00
|
|
|
.variable-or-property:not([non-extensible]) > tooltip > label[value=extensible],
|
|
|
|
.variable-or-property:not([frozen]) > tooltip > label[value=frozen],
|
|
|
|
.variable-or-property:not([sealed]) > tooltip > label[value=sealed] {
|
|
|
|
display: none;
|
|
|
|
}
|