123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /*
- * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
- * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
- *
- * 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.
- * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
- * its contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE 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 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.
- */
- .sidebar-pane {
- position: relative;
- }
- .sidebar-pane > .body {
- position: relative;
- display: none;
- overflow-y: auto;
- overflow-x: hidden;
- }
- .sidebar-pane > .body .info {
- text-align: center;
- font-style: italic;
- font-size: 90%;
- padding: 6px;
- color: #888;
- }
- .sidebar-pane > .body .placard + .info {
- border-top: 1px solid rgb(189, 189, 189);
- background-color: rgb(255, 255, 194);
- }
- .sidebar-pane.visible > .body {
- display: block;
- }
- .sidebar-pane .section .properties {
- padding-left: 16px;
- }
- .sidebar-tabbed-pane .tabbed-pane-header {
- background-image: -webkit-linear-gradient(rgb(243,243,243), rgb(235,235,235));
- border-bottom: 1px solid rgb(202, 202, 202);
- }
- .sidebar-pane-stack > .sidebar-pane.visible:nth-last-of-type(1) {
- border-bottom: 1px solid rgb(189, 189, 189);
- }
- .sidebar-pane-title {
- position: relative;
- background: rgb(230, 230, 230);
- height: 20px;
- padding: 0 5px;
- border-top: 1px solid rgb(189, 189, 189);
- border-bottom: 1px solid rgb(189, 189, 189);
- line-height: 18px;
- background-origin: padding;
- background-clip: padding;
- margin-top: -1px;
- }
- .sidebar-pane-title:active {
- background-color: rgb(204, 204, 204);
- border-top: 1px solid rgb(178, 178, 178);
- border-bottom: 1px solid rgb(178, 178, 178);
- }
- .sidebar-pane-title::before {
- background-image: url(Images/statusbarButtonGlyphs.png);
- background-size: 320px 120px;
- opacity: 0.5;
- float: left;
- width: 11px;
- height: 11px;
- margin-right: 2px;
- content: "a";
- color: transparent;
- position: relative;
- top: 3px;
- }
- @media (-webkit-min-device-pixel-ratio: 1.5) {
- .sidebar-pane-title::before {
- background-image: url(Images/statusbarButtonGlyphs2x.png);
- }
- } /* media */
- .sidebar-pane-title::before {
- background-position: -4px -96px;
- }
- .sidebar-pane-title.expanded::before {
- background-position: -20px -96px;
- }
- .sidebar-pane-toolbar {
- line-height: 18px;
- left: 0;
- right: 4px;
- top: 0;
- height: 20px;
- position: absolute;
- pointer-events: none;
- }
- .sidebar-pane-toolbar > * {
- pointer-events: auto;
- }
- .sidebar-pane-toolbar > .pane-title-button {
- float: right;
- width: 23px;
- height: 17px;
- color: transparent;
- background-color: transparent;
- border: none;
- background-repeat: no-repeat;
- margin: 1px 0 0 0;
- padding: 0;
- border-radius: 0;
- -webkit-appearance: none;
- }
- .sidebar-pane-toolbar > .pane-title-button:hover {
- background-position: -23px 0;
- }
- .sidebar-pane-toolbar > .pane-title-button:active,
- .sidebar-pane-toolbar > .pane-title-button.toggled {
- background-position: -46px 0;
- }
- .sidebar-pane-toolbar > .pane-title-button.add {
- background-image: url(Images/paneAddButtons.png);
- }
- .sidebar-pane-toolbar > .pane-title-button.element-state {
- background-image: url(Images/paneElementStateButtons.png);
- }
- .sidebar-pane-toolbar > .pane-title-button.refresh {
- background-image: url(Images/paneRefreshButtons.png);
- }
- .sidebar-pane-subtitle {
- position: absolute;
- right: 0;
- }
- body.platform-windows .sidebar-pane-subtitle {
- padding-top: 1px;
- }
- .sidebar-pane-subtitle input,
- .section > .header input[type=checkbox] {
- height: 1em;
- width: 1em;
- margin-left: 0;
- margin-top: 0;
- margin-bottom: 0.25em;
- vertical-align: bottom;
- }
|