OLD | NEW |
(Empty) | |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 #device-disabled, |
| 7 #device-disabled-top-container { |
| 8 display: flex; |
| 9 flex-direction: column; |
| 10 } |
| 11 |
| 12 #device-disabled { |
| 13 font-size: 12px; |
| 14 width: 330px; |
| 15 } |
| 16 |
| 17 #device-disabled-top-container { |
| 18 background-color: rgb(214, 0, 0); |
| 19 color: white; |
| 20 text-align: center; |
| 21 } |
| 22 |
| 23 #device-disabled-heading { |
| 24 font-size: 16px; |
| 25 margin: 60px 20px 0; |
| 26 } |
| 27 |
| 28 #device-disabled-message { |
| 29 font-weight: bold; |
| 30 margin: 20px; |
| 31 max-height: 400px; |
| 32 overflow: auto; |
| 33 white-space: pre-wrap; |
| 34 } |
| 35 |
| 36 #device-disabled-bottom-container { |
| 37 background-color: white; |
| 38 } |
| 39 |
| 40 #device-disabled-explanation { |
| 41 margin: 25px 20px 45px |
| 42 } |
OLD | NEW |