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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/searchableView.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) 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 .search-bar { 7 .search-bar {
8 flex: 0 0 23px; 8 flex: 0 0 23px;
9 background-color: #eee; 9 background-color: #eee;
10 border-top: 1px solid #ccc; 10 border-top: 1px solid #ccc;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 border-left: 1px solid rgb(230, 230, 230); 122 border-left: 1px solid rgb(230, 230, 230);
123 } 123 }
124 124
125 .toolbar-search-navigation.toolbar-search-navigation-next.enabled:active { 125 .toolbar-search-navigation.toolbar-search-navigation-next.enabled:active {
126 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116)); 126 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116));
127 } 127 }
128 128
129 .search-results-matches { 129 .search-results-matches {
130 display: inline-block; 130 display: inline-block;
131 text-align: right; 131 text-align: right;
132 font-size: 11px;
133 padding: 0 4px; 132 padding: 0 4px;
134 color: rgb(165, 165, 165); 133 color: rgb(165, 165, 165);
135 } 134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698