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

Side by Side Diff: chrome/browser/resources/inspect/inspect.css

Issue 23441060: DevTools: Improve design of WebViews available for inspection in chrome://inspect (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 color: rgb(48, 57, 66); 8 color: rgb(48, 57, 66);
9 font-family: Arial, sans-serif; 9 font-family: Arial, sans-serif;
10 font-size: 13px; 10 font-size: 13px;
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 display: -webkit-box; 131 display: -webkit-box;
132 padding-top: 10px; 132 padding-top: 10px;
133 } 133 }
134 134
135 .browser-header > .browser-name { 135 .browser-header > .browser-name {
136 font-size: 110%; 136 font-size: 110%;
137 font-weight: bold; 137 font-weight: bold;
138 } 138 }
139 139
140 .row { 140 .row {
141 -webkit-flex-direction: row;
142 display: -webkit-flex;
141 padding: 6px 0; 143 padding: 6px 0;
144 position: relative;
142 } 145 }
143 146
144 .subrow { 147 .subrow {
145 -webkit-box-orient: horizontal; 148 -webkit-box-orient: horizontal;
146 display: -webkit-box; 149 display: -webkit-box;
147 } 150 }
148 151
149 .subrow > div { 152 .subrow > div {
150 margin-right: 0.5em; 153 margin-right: 0.5em;
151 } 154 }
152 155
153 .subrow.webview { 156 .webview-thumbnail {
154 margin-top: -2px; 157 -webkit-box-align: center;
158 -webkit-box-orient: horizontal;
159 -webkit-box-pack: center;
160 display: -webkit-box;
161 height: 60px;
162 margin: 0 1px;
163 overflow: hidden;
164 }
165
166 .screen-rect {
167 background-color: #eee;
168 position: relative;
169 }
170
171 .view-rect {
172 background-color: #ccc;
173 min-height: 1px;
174 min-width: 1px;
175 position: absolute;
176 }
177
178 .view-rect.hidden {
179 background-color: #ddd;
155 } 180 }
156 181
157 .guest { 182 .guest {
158 padding-left: 20px; 183 padding-left: 20px;
159 } 184 }
160 185
161 .invisible-view { 186 .invisible-view {
162 color: rgb(151, 156, 160); 187 color: rgb(151, 156, 160);
163 } 188 }
164 189
165 .url { 190 .url {
166 color: #A0A0A0; 191 color: #A0A0A0;
167 } 192 }
168 193
169 .list { 194 .list {
170 margin-top: 5px; 195 margin-top: 5px;
171 } 196 }
172 197
173 a { 198 a {
174 color: rgb(17, 85, 204); 199 color: rgb(17, 85, 204);
175 margin-right: 6px; 200 margin-right: 6px;
176 text-decoration: none; 201 text-decoration: none;
177 } 202 }
178 203
179 .list.pages .subrow + a,
180 .subrow.webview > div:first-child,
181 .guest .subrow + a {
182 margin-left: 24px; /* Align with the favicon */
183 }
184
185 .list:not(.pages) .subrow { 204 .list:not(.pages) .subrow {
186 height: 19px; 205 height: 19px;
187 } 206 }
188 207
189 a.disabled { 208 a.disabled {
190 opacity: 0.5; 209 opacity: 0.5;
191 pointer-events: none; 210 pointer-events: none;
192 } 211 }
193 212
194 .open > input { 213 .open > input {
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 pointer-events: none; 343 pointer-events: none;
325 } 344 }
326 345
327 .port-forwarding-pair:not(.selected) .close-button:not(:hover) { 346 .port-forwarding-pair:not(.selected) .close-button:not(:hover) {
328 opacity: 0.5; 347 opacity: 0.5;
329 } 348 }
330 349
331 #port-forwarding-config-buttons > button { 350 #port-forwarding-config-buttons > button {
332 float: right; 351 float: right;
333 } 352 }
OLDNEW
« no previous file with comments | « chrome/browser/devtools/devtools_adb_bridge.cc ('k') | chrome/browser/resources/inspect/inspect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698