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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/blockedURLsPane.css

Issue 2651083002: DevTools: do not override font size to 11px (Closed)
Patch Set: more 11pxs Created 3 years, 11 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 .blocked-urls-pane { 7 .blocked-urls-pane {
8 overflow: hidden; 8 overflow: hidden;
9 } 9 }
10 10
11 .toolbar { 11 .toolbar {
12 border-bottom: 1px solid #dadada; 12 border-bottom: 1px solid #dadada;
13 } 13 }
14 14
15 .no-blocked-urls, .blocked-urls-list { 15 .no-blocked-urls, .blocked-urls-list {
16 font-size: 11px;
17 overflow-x: hidden; 16 overflow-x: hidden;
18 overflow-y: auto; 17 overflow-y: auto;
19 } 18 }
20 19
21 .no-blocked-urls { 20 .no-blocked-urls {
22 display: flex; 21 display: flex;
23 justify-content: center; 22 justify-content: center;
24 padding: 3px; 23 padding: 3px;
25 } 24 }
26 25
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 visibility: hidden; 67 visibility: hidden;
69 } 68 }
70 69
71 .blocked-url .remove-icon:hover { 70 .blocked-url .remove-icon:hover {
72 opacity: 1.0; 71 opacity: 1.0;
73 } 72 }
74 73
75 .blocked-url:hover .remove-icon { 74 .blocked-url:hover .remove-icon {
76 visibility: visible; 75 visibility: visible;
77 } 76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698