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

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

Issue 2906983002: DevTools: cleanup text input styles (Closed)
Patch Set: better Created 3 years, 6 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 .toolbar-search-buttons { 95 .toolbar-search-buttons {
96 flex-basis: 165px; 96 flex-basis: 165px;
97 } 97 }
98 98
99 .toolbar-replace-control, 99 .toolbar-replace-control,
100 #search-input-field { 100 #search-input-field {
101 margin-top: 1px; 101 margin-top: 1px;
102 line-height: 17px; 102 line-height: 17px;
103 } 103 }
104 104
105 .toolbar-search-control, .toolbar-replace-control { 105 .toolbar-search-control, input.toolbar-replace-control {
pfeldman 2017/05/31 21:51:15 ditto
luoe 2017/06/01 01:10:43 SearchableView's input fields are exceptions that
106 border: 1px solid rgb(163, 163, 163); 106 border: 1px solid rgb(163, 163, 163);
107 height: 20px; 107 height: 20px;
108 border-radius: 2px; 108 border-radius: 2px;
109 width: 100%; 109 width: 100%;
110 margin-top: 1px; 110 margin-top: 1px;
111 } 111 }
112 112
113 .toolbar-search-navigation.enabled:active { 113 .toolbar-search-navigation.enabled:active {
114 background-position: 4px 7px, 0 0; 114 background-position: 4px 7px, 0 0;
115 } 115 }
(...skipping 20 matching lines...) Expand all
136 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116)); 136 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168, 168), rgb(116, 116, 116));
137 } 137 }
138 138
139 .search-results-matches { 139 .search-results-matches {
140 display: inline-block; 140 display: inline-block;
141 text-align: right; 141 text-align: right;
142 padding: 0 4px; 142 padding: 0 4px;
143 color: rgb(165, 165, 165); 143 color: rgb(165, 165, 165);
144 align-self: center; 144 align-self: center;
145 } 145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698