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

Side by Side Diff: remoting/webapp/main.css

Issue 10380002: Remove line-height property from <input> tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, 6 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 7 blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, 8 font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl,
9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, 9 dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody,
10 tfoot, thead, tr, th, td, button { 10 tfoot, thead, tr, th, td, button {
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 177
178 ::-webkit-scrollbar-track-piece { 178 ::-webkit-scrollbar-track-piece {
179 background: white; 179 background: white;
180 } 180 }
181 181
182 /*------------------------------------------------------------------ 182 /*------------------------------------------------------------------
183 Component: Text Field 183 Component: Text Field
184 ------------------------------------------------------------------*/ 184 ------------------------------------------------------------------*/
185 input { 185 input {
186 height: 29px; 186 height: 29px;
187 line-height: 27px;
188 padding-left: 8px; 187 padding-left: 8px;
189 color: #333; 188 color: #333;
190 border: 1px solid #d9d9d9; 189 border: 1px solid #d9d9d9;
191 border-top: 1px solid #c0c0c0; 190 border-top: 1px solid #c0c0c0;
192 vertical-align: top; 191 vertical-align: top;
193 -webkit-border-radius: 1px; 192 -webkit-border-radius: 1px;
194 } 193 }
195 input:hover { 194 input:hover {
196 border: 1px solid #b9b9b9; 195 border: 1px solid #b9b9b9;
197 border-top: 1px solid #a0a0a0; 196 border-top: 1px solid #a0a0a0;
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 box-sizing: border-box; 547 box-sizing: border-box;
549 } 548 }
550 549
551 /* 550 /*
552 * Setting hidden on elements that match some rule overriding 'display' doesn't 551 * Setting hidden on elements that match some rule overriding 'display' doesn't
553 * do what you would expect unless this is made explicit (and !important). 552 * do what you would expect unless this is made explicit (and !important).
554 */ 553 */
555 [hidden] { 554 [hidden] {
556 display: none !important; 555 display: none !important;
557 } 556 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698