OLD | NEW |
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 /* Styles common to WebUI pages that share the options pages style */ | 6 /* Styles common to WebUI pages that share the options pages style */ |
7 body { | 7 body { |
8 cursor: default; | 8 cursor: default; |
9 font-size: 13px; | 9 font-size: 13px; |
10 } | 10 } |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 color: #888; | 128 color: #888; |
129 } | 129 } |
130 | 130 |
131 /* TEXT */ | 131 /* TEXT */ |
132 input[type='password'], | 132 input[type='password'], |
133 input[type='text'], | 133 input[type='text'], |
134 input[type='url'], | 134 input[type='url'], |
135 input:not([type]) { | 135 input:not([type]) { |
136 -webkit-border-radius: 2px; | 136 -webkit-border-radius: 2px; |
137 border: 1px solid #aaa; | 137 border: 1px solid #aaa; |
138 font-size: inherit; | 138 box-sizing: border-box; |
139 padding: 3px; | 139 font: inherit; |
| 140 height: 2em; |
| 141 padding: 4px; |
140 } | 142 } |
141 | 143 |
142 input[type='text']:disabled { | 144 input[type='text']:disabled { |
143 color: #888; | 145 color: #888; |
144 } | 146 } |
145 | 147 |
146 /* Elements that need to be LTR even in an RTL context, but should align | 148 /* Elements that need to be LTR even in an RTL context, but should align |
147 * right. (Namely, URLs, search engine names, etc.) | 149 * right. (Namely, URLs, search engine names, etc.) |
148 */ | 150 */ |
149 html[dir='rtl'] .weakrtl { | 151 html[dir='rtl'] .weakrtl { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 -webkit-user-select: none; | 193 -webkit-user-select: none; |
192 border-bottom: 1px solid #eeeeee; | 194 border-bottom: 1px solid #eeeeee; |
193 color: #333; | 195 color: #333; |
194 font-size: 200%; | 196 font-size: 200%; |
195 font-weight: normal; | 197 font-weight: normal; |
196 margin: 0; | 198 margin: 0; |
197 padding-bottom: 4px; | 199 padding-bottom: 4px; |
198 padding-top: 13px; | 200 padding-top: 13px; |
199 text-shadow: white 0 1px 2px; | 201 text-shadow: white 0 1px 2px; |
200 } | 202 } |
OLD | NEW |