| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2010 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 html, body { | 6 html, body { |
| 7 margin: 0; | 7 margin: 0; |
| 8 width: 100%; | 8 width: 100%; |
| 9 height: 100%; | 9 height: 100%; |
| 10 cursor: default; | 10 cursor: default; |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 html[dir=rtl] .header > div, | 234 html[dir=rtl] .header > div, |
| 235 html[dir=rtl] .header form { | 235 html[dir=rtl] .header form { |
| 236 float: right; | 236 float: right; |
| 237 } | 237 } |
| 238 | 238 |
| 239 #drop-overlay { | 239 #drop-overlay { |
| 240 position: absolute; | 240 position: absolute; |
| 241 display: none; | 241 display: none; |
| 242 pointer-events: none; | 242 pointer-events: none; |
| 243 border: 1px solid hsl(214, 91%, 85%);; | 243 border: 1px solid hsl(214, 91%, 85%);; |
| 244 -webkit-border-radius: 3px; | 244 border-radius: 3px; |
| 245 -webkit-box-sizing: border-box; | 245 -webkit-box-sizing: border-box; |
| 246 background-color: hsla(214, 91%, 85%, .5); | 246 background-color: hsla(214, 91%, 85%, .5); |
| 247 overflow: hidden; | 247 overflow: hidden; |
| 248 z-index: -1; | 248 z-index: -1; |
| 249 } | 249 } |
| 250 | 250 |
| 251 #drop-overlay.line { | 251 #drop-overlay.line { |
| 252 border: 3px solid black; | 252 border: 3px solid black; |
| 253 border-top-color: transparent; | 253 border-top-color: transparent; |
| 254 border-bottom-color: transparent; | 254 border-bottom-color: transparent; |
| 255 background-color: black; | 255 background-color: black; |
| 256 background-clip: padding-box; | 256 background-clip: padding-box; |
| 257 height: 8px; | 257 height: 8px; |
| 258 -webkit-border-radius: 0; | 258 border-radius: 0; |
| 259 z-index: 10; | 259 z-index: 10; |
| 260 } | 260 } |
| 261 | 261 |
| 262 .toolbar button { | 262 .toolbar button { |
| 263 -webkit-appearance: none; | 263 -webkit-appearance: none; |
| 264 background: transparent; | 264 background: transparent; |
| 265 border: 0; | 265 border: 0; |
| 266 font: inherit; | 266 font: inherit; |
| 267 padding: 0; | 267 padding: 0; |
| 268 background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat; | 268 background: -webkit-canvas(drop-down-arrow) 100% 50% no-repeat; |
| 269 padding-right: 11px; | 269 padding-right: 11px; |
| 270 } | 270 } |
| 271 | 271 |
| 272 html[dir=rtl] .toolbar button { | 272 html[dir=rtl] .toolbar button { |
| 273 background-position: 0% 50%; | 273 background-position: 0% 50%; |
| 274 padding-right: 0; | 274 padding-right: 0; |
| 275 padding-left: 11px; | 275 padding-left: 11px; |
| 276 } | 276 } |
| OLD | NEW |