| 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 box-sizing: border-box; | 6 box-sizing: border-box; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body { | 9 body { |
| 10 color: rgb(48, 57, 66); | 10 color: rgb(48, 57, 66); |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 align-items: center; | 275 align-items: center; |
| 276 border-bottom: 1px solid #eee; | 276 border-bottom: 1px solid #eee; |
| 277 display: flex; | 277 display: flex; |
| 278 padding: 5px 0; | 278 padding: 5px 0; |
| 279 } | 279 } |
| 280 | 280 |
| 281 #device-settings button { | 281 #device-settings button { |
| 282 margin-left: 15px; | 282 margin-left: 15px; |
| 283 } | 283 } |
| 284 | 284 |
| 285 .warning { | |
| 286 background-image: -webkit-image-set(url(chrome://theme/IDR_WARNING) 1x, | |
| 287 url(chrome://theme/IDR_WARNING@2x) 2x); | |
| 288 background-position: 0 center; | |
| 289 background-repeat: no-repeat; | |
| 290 background-size: 24px 21px; | |
| 291 margin-top: 5px; | |
| 292 padding-left: 25px; | |
| 293 } | |
| 294 | |
| 295 #port-forwarding-config::backdrop { | 285 #port-forwarding-config::backdrop { |
| 296 background-color: rgba(255, 255, 255, 0.75); | 286 background-color: rgba(255, 255, 255, 0.75); |
| 297 } | 287 } |
| 298 | 288 |
| 299 #port-forwarding-config { | 289 #port-forwarding-config { |
| 300 background: white; | 290 background: white; |
| 301 border: 0; | 291 border: 0; |
| 302 border-radius: 3px; | 292 border-radius: 3px; |
| 303 box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15); | 293 box-shadow: 0 4px 23px 5px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0,0,0,0.15); |
| 304 color: #333; | 294 color: #333; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 @media (min-width: 47em) { | 406 @media (min-width: 47em) { |
| 417 #container { | 407 #container { |
| 418 height: 100vh; | 408 height: 100vh; |
| 419 } | 409 } |
| 420 #navigation, | 410 #navigation, |
| 421 #content { | 411 #content { |
| 422 height: 100vh; | 412 height: 100vh; |
| 423 overflow: auto; | 413 overflow: auto; |
| 424 } | 414 } |
| 425 } | 415 } |
| OLD | NEW |