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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.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) 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 .help-window-main { 7 .help-window-main {
8 color: rgb(48, 57, 66); 8 color: rgb(48, 57, 66);
9 background-color: white; 9 background-color: white;
10 padding: 11px 0 0 0; 10 padding: 11px 0 0 0;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 padding-top: 9px; 155 padding-top: 9px;
156 } 156 }
157 157
158 .settings-tab.help-content { 158 .settings-tab.help-content {
159 margin: 0; 159 margin: 0;
160 padding: 0; 160 padding: 0;
161 } 161 }
162 162
163 .settings-tab input:not([type]), 163 .settings-tab input:not([type]),
164 .settings-tab input[type="text"] { 164 .settings-tab input[type="text"] {
165 border: 1px solid rgb(213, 213, 213); 165 border: 1px solid rgb(213, 213, 213);
pfeldman 2017/05/31 21:51:15 why does it have custom border?
luoe 2017/06/01 01:10:43 Removed in next CL
166 border-radius: 2px; 166 border-radius: 2px;
167 color: #444444;
168 padding: 3px; 167 padding: 3px;
169 } 168 }
170 169
171 .settings-tab input.numeric { 170 .settings-tab input.numeric {
172 text-align: right; 171 text-align: right;
173 } 172 }
174 173
175 .settings-tab-container { 174 .settings-tab-container {
176 flex: auto; 175 flex: auto;
177 overflow: hidden; 176 overflow: hidden;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 display: none; 226 display: none;
228 } 227 }
229 228
230 .settings-experiment-hidden label { 229 .settings-experiment-hidden label {
231 background-color: #ddd; 230 background-color: #ddd;
232 } 231 }
233 232
234 .settings-developer-mode .settings-experiment-hidden { 233 .settings-developer-mode .settings-experiment-hidden {
235 display: block; 234 display: block;
236 } 235 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698