| /* |
| * Copyright (C) 2018 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| .computed-style-section { |
| padding-bottom: 3px; |
| color: var(--text-color-tertiary); |
| -webkit-user-select: text; |
| } |
| |
| .computed-style-section .computed-property-item { |
| box-sizing: border-box; |
| max-width: 100%; |
| min-height: var(--disclosure-button-size); |
| padding-left: calc(var(--disclosure-button-size) + 6px); |
| padding-right: var(--css-declaration-horizontal-padding); |
| border-top: 0.5px solid transparent; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| } |
| |
| .computed-style-section .computed-property-item.expanded { |
| padding-bottom: 2px; |
| background-color: hsl(0, 0%, 97%); |
| border-top-color: var(--text-color-quaternary); |
| } |
| |
| .computed-style-section .computed-property-item.expanded + .computed-property-item { |
| border-top-color: var(--text-color-quaternary); |
| } |
| |
| .computed-style-section .computed-property-item .disclosure-button { |
| display: inline-block; |
| width: var(--disclosure-button-size); |
| height: var(--disclosure-button-size); |
| -webkit-margin-start: calc(-1 * var(--disclosure-button-size)); |
| border: 0; |
| background-color: transparent; |
| background-image: url(../Images/DisclosureTriangles.svg#closed-normal); |
| background-repeat: no-repeat; |
| background-position: center; |
| background-size: 13px 13px; |
| -webkit-appearance: none; |
| } |
| |
| .computed-style-section .computed-property-item .property-traces { |
| display: none; |
| width: 100%; |
| margin: 0; |
| padding: 0; |
| } |
| |
| .computed-style-section .computed-property-item.expanded .property-traces { |
| display: table; |
| } |
| |
| .computed-style-section .computed-property-item.expanded .disclosure-button { |
| vertical-align: top; |
| background-image: url(../Images/DisclosureTriangles.svg#open-normal); |
| } |
| |
| .computed-style-section .computed-property-item .property-trace-item { |
| display: table-row; |
| margin-left: 1.2em; |
| } |
| |
| .computed-style-section .computed-property-item .property-trace-item::before { |
| content: "\2022"; |
| display: inline-block; |
| position: absolute; |
| margin-left: -0.8em; |
| } |
| |
| .computed-style-section .computed-property-item .property-trace-item .property.overridden .value { |
| text-decoration: line-through; |
| text-decoration-color: hsla(0, 100%, 50%, 0.7); |
| } |
| |
| .computed-style-section .property-trace-item-left, |
| .computed-style-section .property-trace-item-right { |
| display: table-cell; |
| } |
| |
| .computed-style-section .property-trace-item-right { |
| text-align: right; |
| } |
| |
| .computed-style-section .computed-property-item .property-trace-item .value { |
| min-width: 4em; |
| padding-right: 0.6em; |
| color: var(--text-color); |
| } |
| |
| .computed-style-section .property .value { |
| color: var(--text-color); |
| } |
| |
| .computed-style-section .computed-property-item .property { |
| display: inline; |
| overflow: hidden; |
| max-width: 100%; |
| text-overflow: ellipsis; |
| } |
| |
| .computed-style-section .computed-property-item .property .name { |
| color: var(--syntax-highlight-boolean-color); |
| } |
| |
| .computed-style-section .computed-property-item .property-trace-item .selector { |
| color: var(--text-color-secondary); |
| } |
| |
| .computed-style-section .computed-property-item .origin { |
| font: 11px sans-serif; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| white-space: nowrap; |
| } |
| |
| .computed-style-section .computed-property-item .go-to-link { |
| color: var(--text-color-secondary); |
| } |
| |
| .computed-style-section .property-trace-item .property .name, |
| .computed-style-section .property-trace-item .property .colon, |
| .computed-style-section .property-trace-item .property .semicolon { |
| display: none; |
| } |
| |
| .computed-style-properties.details-section > .content, |
| .computed-style-properties.details-section > .content > .group { |
| display: block; |
| } |
| |
| @media (prefers-color-scheme: dark) { |
| .computed-style-section .computed-property-item.expanded { |
| background-color: var(--background-color-code); |
| } |
| } |