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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/devices/devicesView.css

Issue 2651083002: DevTools: do not override font size to 11px (Closed)
Patch Set: more 11pxs Created 3 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 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 .devices-container { 7 .devices-container {
8 overflow: hidden; 8 overflow: hidden;
9 flex: auto; 9 flex: auto;
10 } 10 }
(...skipping 21 matching lines...) Expand all
32 flex-direction: column; 32 flex-direction: column;
33 justify-content: center; 33 justify-content: center;
34 font-size: 14px; 34 font-size: 14px;
35 } 35 }
36 36
37 .devices-sidebar-item.selected { 37 .devices-sidebar-item.selected {
38 border-left: 6px solid #666 !important; 38 border-left: 6px solid #666 !important;
39 padding-left: 10px; 39 padding-left: 10px;
40 } 40 }
41 41
42 .devices-sidebar-item-status {
43 font-size: 11px;
44 }
45
46 .devices-sidebar-item-status:before { 42 .devices-sidebar-item-status:before {
47 content: "\25cf"; 43 content: "\25cf";
48 font-size: 16px; 44 font-size: 16px;
49 color: red; 45 color: red;
50 position: relative; 46 position: relative;
51 top: 1px; 47 top: 1px;
52 margin-right: 2px; 48 margin-right: 2px;
53 } 49 }
54 50
55 .devices-sidebar-item.device-connected .devices-sidebar-item-status:before { 51 .devices-sidebar-item.device-connected .devices-sidebar-item-status:before {
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 } 326 }
331 327
332 .device-view-port-icon.device-view-port-icon-error { 328 .device-view-port-icon.device-view-port-icon-error {
333 background-color: red; 329 background-color: red;
334 } 330 }
335 331
336 .device-view-port-icon.device-view-port-icon-transient { 332 .device-view-port-icon.device-view-port-icon-transient {
337 transform: scale(1.2); 333 transform: scale(1.2);
338 background-color: orange; 334 background-color: orange;
339 } 335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698