/* 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/. */ #sidebar-panel-computedview { margin: 0; display : flex; flex-direction: column; width: 100%; height: 100%; } #computedview-container { overflow: auto; height: 100%; } /* This extra wrapper only serves as a way to get the content of the view focusable. So that when the user reaches it either via keyboard or mouse, we know that the view is focused and therefore can handle shortcuts. However, for accessibility reasons, tabindex is set to -1 to avoid having to tab through it, and the outline is hidden. */ #computedview-container-focusable { height: 100%; outline: none; } #computedview-toolbar { display: flex; } #browser-style-checkbox { /* Bug 1200073 - extra space before the browser styles checkbox so they aren't squished together in a small window. Put also an extra space after. */ margin-inline-start: 5px; margin-inline-end: 5px; } #browser-style-checkbox-label { margin-right: 5px; /* Vertically center the 'Browser styles' checkbox in the Computed panel with its label. */ display: flex; align-items: center; } #propertyContainer { -moz-user-select: text; overflow-y: auto; overflow-x: hidden; flex: auto; } .row-striped { background: var(--theme-body-background); } .property-view-hidden, .property-content-hidden { display: none; } .property-view { padding: 2px 17px; display: flex; flex-wrap: wrap; } .property-name-container { width: 202px; } .property-value-container { display: flex; flex: 1 1 168px; overflow: hidden; } .property-name-container > *, .property-value-container > * { display: inline-block; vertical-align: middle; } .property-name { overflow-x: hidden; text-overflow: ellipsis; white-space: nowrap; outline: 0 !important; } .other-property-value { background-image: url(images/arrow-e.png); background-repeat: no-repeat; background-size: 5px 8px; } @media (min-resolution: 1.1dppx) { .other-property-value { background-image: url(images/arrow-e@2x.png); } } .property-value { overflow-x: hidden; text-overflow: ellipsis; white-space: nowrap; padding-left: 10px; outline: 0 !important; } .other-property-value { background-position: left center; padding-left: 8px; } .property-content { padding-left: 17px; } .theme-firebug .property-view, .theme-firebug .property-content { font-family: var(--proportional-font-family); } .theme-firebug .property-view { border-bottom: 1px solid rgba(0, 0, 0, 0.1); } /* From skin */ .expander { visibility: hidden; margin-inline-start: -12px !important; } .expandable { visibility: visible; } .match { visibility: hidden; } .matchedselectors > p { clear: both; margin: 0 2px 0 0; padding: 2px; overflow-x: hidden; border-style: dotted; border-color: #A09090; border-width: 1px 1px 0 1px; } .matchedselectors > p:last-of-type { border-bottom-width: 1px; } .matched { text-decoration: line-through; } .parentmatch { opacity: 0.5; } #computedview-no-results { height: 100%; } .onlyuserstyles { cursor: pointer; } .legendKey { margin: 0 5px; } .link { padding: 0 3px; cursor: pointer; float: right; } /* Take away these two :visited rules to get a core dumper */ /* See https://bugzilla.mozilla.org/show_bug.cgi?id=575675#c30 */ .link, .link:visited { color: #336699; } .link, .helplink, .link:visited, .helplink:visited { text-decoration: none; } .link:hover { text-decoration: underline; } .computedview-colorswatch { border-radius: 50%; width: 0.9em; height: 0.9em; vertical-align: middle; margin-inline-end: 5px; display: inline-block; position: relative; } .computedview-colorswatch::before { content: ''; background-color: #9C9CFF; background-image: linear-gradient(45deg, #A09090 25%, transparent 25%, transparent 75%, #A09090 75%, #A09090), linear-gradient(45deg, #A09090 25%, transparent 25%, transparent 75%, #A09090 75%, #A09090); background-size: 12px 12px; background-position: 0 0, 6px 6px; position: absolute; border-radius: 50%; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; }