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

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: 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 padding: 6px 0; 141 padding: 6px 0;
142 position: relative;
142 } 143 }
143 144
144 .subrow { 145 .subrow {
145 -webkit-box-orient: horizontal; 146 -webkit-box-orient: horizontal;
146 display: -webkit-box; 147 display: -webkit-box;
147 } 148 }
148 149
149 .subrow > div { 150 .subrow > div {
150 margin-right: 0.5em; 151 margin-right: 0.5em;
151 } 152 }
152 153
153 .subrow.webview { 154 .webview-thumbnail {
154 margin-top: -2px; 155 -webkit-box-align: center;
156 -webkit-box-orient: horizontal;
157 -webkit-box-pack: center;
158 bottom: 1px;
159 display: -webkit-box;
160 left: 0;
161 overflow: hidden;
162 position: absolute;
163 top: 1px;
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, 204 .list.pages .subrow:not(.webview) + a,
180 .subrow.webview > div:first-child,
181 .guest .subrow + a { 205 .guest .subrow + a {
182 margin-left: 24px; /* Align with the favicon */ 206 margin-left: 24px; /* Align with the favicon */
183 } 207 }
184 208
185 .list:not(.pages) .subrow { 209 .list:not(.pages) .subrow {
186 height: 19px; 210 height: 19px;
187 } 211 }
188 212
189 a.disabled { 213 a.disabled {
190 opacity: 0.5; 214 opacity: 0.5;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 pointer-events: none; 348 pointer-events: none;
325 } 349 }
326 350
327 .port-forwarding-pair:not(.selected) .close-button:not(:hover) { 351 .port-forwarding-pair:not(.selected) .close-button:not(:hover) {
328 opacity: 0.5; 352 opacity: 0.5;
329 } 353 }
330 354
331 #port-forwarding-config-buttons > button { 355 #port-forwarding-config-buttons > button {
332 float: right; 356 float: right;
333 } 357 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698