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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/checkboxTextLabel.css

Issue 1937183002: DevTools: fix styles in rendering pane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Made style more generic Created 4 years, 7 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) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 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 :host { 7 :host {
8 padding: 0; 8 padding: 0;
9 margin: 0; 9 margin: 0;
10 display: inline-flex; 10 display: inline-flex;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 @media (-webkit-min-device-pixel-ratio: 1.5) { 51 @media (-webkit-min-device-pixel-ratio: 1.5) {
52 input.dt-checkbox-themed:after { 52 input.dt-checkbox-themed:after {
53 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); 53 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png);
54 } 54 }
55 55
56 } /* media */ 56 } /* media */
57 57
58 ::content .dt-checkbox-subtitle { 58 ::content .dt-checkbox-subtitle {
59 color: gray; 59 color: gray;
60 font-size: 12px;
60 } 61 }
62
63 ::content .small-subtitle {
64 color: #262626;
65 font-size: 13px;
66 margin-left: 6px;
67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698