Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(827)

Side by Side Diff: Source/devtools/front_end/sidebarPane.css

Issue 1177553002: DevTools: follow up to r196782 with minor UI fixed. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/devtools/front_end/sources/uiList.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 13 matching lines...) Expand all
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 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 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 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. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 .sidebar-pane { 30 .sidebar-pane {
31 position: relative; 31 position: relative;
32 flex-direction: column; 32 flex-direction: column;
33 display: flex; 33 display: flex;
34 flex: none;
34 } 35 }
35 36
36 .sidebar-pane .info { 37 .sidebar-pane .info {
37 text-align: center; 38 text-align: center;
38 font-style: italic; 39 font-style: italic;
39 padding: 6px; 40 padding: 6px;
40 color: #888; 41 color: #888;
41 } 42 }
42 43
43 .sidebar-pane .section .properties-tree { 44 .sidebar-pane .section .properties-tree {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 } 98 }
98 99
99 .sidebar-pane > .toolbar { 100 .sidebar-pane > .toolbar {
100 border-bottom: 1px solid #ddd; 101 border-bottom: 1px solid #ddd;
101 } 102 }
102 103
103 .sidebar-pane > .toolbar > * { 104 .sidebar-pane > .toolbar > * {
104 pointer-events: auto; 105 pointer-events: auto;
105 } 106 }
106 107
107 .sidebar-pane-title .sidebar-pane > .toolbar { 108 .sidebar-pane-title > .toolbar {
108 position: absolute; 109 position: absolute;
109 right: 0; 110 right: 0;
110 top: -3px; 111 top: -3px;
111 } 112 }
112 113
113 .section > .header input[type=checkbox] { 114 .section > .header input[type=checkbox] {
114 height: 1em; 115 height: 1em;
115 width: 1em; 116 width: 1em;
116 margin-left: 0; 117 margin-left: 0;
117 margin-top: 0; 118 margin-top: 0;
118 margin-bottom: 0.25em; 119 margin-bottom: 0.25em;
119 vertical-align: bottom; 120 vertical-align: bottom;
120 } 121 }
121 122
122 .hidden-callframes-message { 123 .hidden-callframes-message {
123 text-align: center; 124 text-align: center;
124 font-style: italic; 125 font-style: italic;
125 padding: 4px; 126 padding: 4px;
126 color: #888; 127 color: #888;
127 background-color: #FFFFC2; 128 background-color: #FFFFC2;
128 } 129 }
129 130
130 .sidebar-pane-button-new-rule { 131 .sidebar-pane-button-new-rule {
131 background-image: url(Images/paneAddButtons.png); 132 background-image: url(Images/paneAddButtons.png);
132 background-position: 0 0; 133 background-position: 0 0;
133 position: absolute; 134 position: absolute;
134 height: 16px; 135 height: 16px;
135 width: 23px; 136 width: 23px;
136 right: 2px; 137 right: 5px;
137 bottom: 3px; 138 bottom: 3px;
138 visibility: hidden; 139 visibility: hidden;
139 } 140 }
140 141
141 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru le { 142 .styles-section.matched-styles:not(.read-only):hover .sidebar-pane-button-new-ru le {
142 visibility: visible; 143 visibility: visible;
143 } 144 }
144 145
145 .sidebar-pane-button-new-rule:hover { 146 .sidebar-pane-button-new-rule:hover {
146 background-position: -23px 0; 147 background-position: -23px 0;
147 } 148 }
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/sources/uiList.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698