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

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

Issue 2741863002: DevTools: Focus background in Toolbars (Closed)
Patch Set: clean up code Created 3 years, 8 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;
11 flex-shrink: 0; 11 flex-shrink: 0;
12 align-items: center !important; 12 align-items: center !important;
13 } 13 }
14 14
15 input { 15 input {
16 height: 12px; 16 height: 12px;
17 width: 12px; 17 width: 12px;
18 flex-shrink: 0; 18 flex-shrink: 0;
19 } 19 }
20 20
21 input.dt-checkbox-visualize-focus:focus { 21 input:focus {
22 outline: auto 5px -webkit-focus-ring-color; 22 outline: auto 5px -webkit-focus-ring-color;
23 } 23 }
24 24
25 input.dt-checkbox-themed { 25 input.dt-checkbox-themed {
26 -webkit-appearance: none; 26 -webkit-appearance: none;
27 margin: 0 5px auto 2px; 27 margin: 0 5px auto 2px;
28 border: 1px solid rgb(45, 45, 45); 28 border: 1px solid rgb(45, 45, 45);
29 border-radius: 3px; 29 border-radius: 3px;
30 background-color: rgb(102, 102, 102); 30 background-color: rgb(102, 102, 102);
31 position: relative; 31 position: relative;
(...skipping 29 matching lines...) Expand all
61 61
62 .dt-checkbox-text { 62 .dt-checkbox-text {
63 margin-left: 3px; 63 margin-left: 3px;
64 overflow: hidden; 64 overflow: hidden;
65 text-overflow: ellipsis; 65 text-overflow: ellipsis;
66 } 66 }
67 67
68 .dt-checkbox-subtitle { 68 .dt-checkbox-subtitle {
69 color: gray; 69 color: gray;
70 } 70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698