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 html, | 5 html, |
6 body { | 6 body { |
7 cursor: default; | 7 cursor: default; |
8 height: 100%; | 8 height: 100%; |
9 margin: 0; | 9 margin: 0; |
10 overflow: hidden; | 10 overflow: hidden; |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 .header { | 248 .header { |
249 min-width: 400px; | 249 min-width: 400px; |
250 } | 250 } |
251 | 251 |
252 html[dir=rtl] .logo, | 252 html[dir=rtl] .logo, |
253 html[dir=rtl] .header > div, | 253 html[dir=rtl] .header > div, |
254 html[dir=rtl] .header form { | 254 html[dir=rtl] .header form { |
255 float: right; | 255 float: right; |
256 } | 256 } |
257 | 257 |
258 input[type='search'] { | |
259 -webkit-appearance: textfield; | |
260 -webkit-margin-end: 2px; | |
261 -webkit-margin-start: 2px; | |
262 width: 100%; | |
263 } | |
264 | |
265 #drop-overlay { | 258 #drop-overlay { |
266 background-color: hsla(214, 91%, 85%, .5); | 259 background-color: hsla(214, 91%, 85%, .5); |
267 border: 1px solid hsl(214, 91%, 85%); | 260 border: 1px solid hsl(214, 91%, 85%); |
268 border-radius: 3px; | 261 border-radius: 3px; |
269 box-sizing: border-box; | 262 box-sizing: border-box; |
270 display: none; | 263 display: none; |
271 overflow: hidden; | 264 overflow: hidden; |
272 pointer-events: none; | 265 pointer-events: none; |
273 position: absolute; | 266 position: absolute; |
274 z-index: -1; | 267 z-index: -1; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 background: transparent; | 301 background: transparent; |
309 border: 0; | 302 border: 0; |
310 font: inherit; | 303 font: inherit; |
311 padding-bottom: 0; | 304 padding-bottom: 0; |
312 padding-top: 0; | 305 padding-top: 0; |
313 } | 306 } |
314 | 307 |
315 html[dir=rtl] .summary button { | 308 html[dir=rtl] .summary button { |
316 background-position: top middle; | 309 background-position: top middle; |
317 } | 310 } |
OLD | NEW |