Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / sources / navigatorView.css
1 /*
2  * Copyright (C) 2006, 2007, 2008 Apple Inc.  All rights reserved.
3  * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1.  Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  * 2.  Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15  *     its contributors may be used to endorse or promote products derived
16  *     from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 .navigator-domain-tree-item .icon {
31     content: url(Images/domain.png);
32 }
33
34 .navigator-folder-tree-item .icon {
35     opacity: 0.7;
36     content: url(Images/frame.png);
37 }
38
39 .navigator-script-tree-item .icon {
40     content: url(Images/resourceJSIcon.png);
41 }
42
43 .navigator-stylesheet-tree-item .icon {
44     content: url(Images/resourceCSSIcon.png);
45 }
46
47 .navigator-document-tree-item .icon {
48     content: url(Images/resourceDocumentIcon.png);
49 }
50
51 .navigator-other-tree-item .icon {
52     content: url(Images/resourcePlainIcon.png);
53 }
54
55 .navigator > ol {
56     min-height: 100%;
57     display: inline-block;
58 }
59
60 .navigator li {
61     height: 18px;
62     line-height: 17px;
63     white-space: nowrap;
64 }
65
66 .navigator :focus li.selected {
67     color: white;
68 }
69
70 .navigator li.selected .selection {
71     height: 18px;
72 }
73
74 .navigator > ol.being-edited li.selected .selection {
75     background-color: rgb(56, 121, 217);
76 }
77
78
79 .navigator .icon {
80     width: 16px;
81     height: 16px;
82     float: left;
83 }
84
85 .navigator .base-navigator-tree-element-title {
86     display: inline-block;
87     position: relative;
88     padding-left: 2px;
89 }
90
91 .navigator .base-navigator-tree-element-title.editing {
92     margin: auto;
93 }
94
95 .navigator-tabbed-pane {
96     flex: auto;
97 }
98
99 .navigator-tabbed-pane .tabbed-pane-content {
100     overflow: hidden;
101 }
102
103 .navigator-tabbed-pane .navigator-container {
104     overflow: auto;
105     transform: translateZ(0);
106 }
107
108 .navigator-tabbed-pane .navigator {
109     padding-left: 0;
110     transform: translateZ(0);
111 }
112
113 .navigator-tabbed-pane .tabbed-pane-header-contents {
114     margin-left: 2px;
115 }