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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/elements/breadcrumbs.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 2014 The Chromium Authors. All rights reserved. 2 * Copyright 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 .crumbs { 7 .crumbs {
8 display: inline-block; 8 display: inline-block;
9 pointer-events: auto; 9 pointer-events: auto;
10 cursor: default; 10 cursor: default;
11 font-size: 11px;
12 line-height: 17px; 11 line-height: 17px;
13 white-space: nowrap; 12 white-space: nowrap;
14 } 13 }
15 14
16 .crumbs .crumb { 15 .crumbs .crumb {
17 display: inline-block; 16 display: inline-block;
18 padding: 0 7px; 17 padding: 0 7px;
19 height: 18px; 18 height: 18px;
20 white-space: nowrap; 19 white-space: nowrap;
21 } 20 }
(...skipping 13 matching lines...) Expand all
35 34
36 .crumbs .crumb.selected, .crumbs .crumb.selected:hover { 35 .crumbs .crumb.selected, .crumbs .crumb.selected:hover {
37 background-color: rgb(56, 121, 217); 36 background-color: rgb(56, 121, 217);
38 color: white; 37 color: white;
39 text-shadow: rgba(255, 255, 255, 0.5) 0 0 0; 38 text-shadow: rgba(255, 255, 255, 0.5) 0 0 0;
40 } 39 }
41 40
42 .crumbs .crumb:hover { 41 .crumbs .crumb:hover {
43 background-color: rgb(216, 216, 216); 42 background-color: rgb(216, 216, 216);
44 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698