| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 body { | 6 body { |
| 7 font-size: 80%; | 7 font-size: 80%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 button { | 10 button { |
| 11 display: block; | 11 display: block; |
| 12 font-size: 110%; | 12 font-size: 110%; |
| 13 font-weight: bold; | 13 font-weight: bold; |
| 14 margin: 10px auto; | 14 margin: 10px auto; |
| 15 min-height: 48px; | 15 min-height: 48px; |
| 16 width: 200px; | 16 width: 200px; |
| 17 } | 17 } |
| 18 | 18 |
| 19 button:disabled > .export-view-logging-enabled, |
| 20 button:enabled > .export-view-logging-disabled |
| 21 { |
| 22 display: none; |
| 23 } |
| 24 |
| 19 .radio-button-div { | 25 .radio-button-div { |
| 20 margin: 7px auto; | 26 margin: 7px auto; |
| 21 } | 27 } |
| 22 | 28 |
| 23 .warning { | 29 .warning { |
| 24 color: red; | 30 color: red; |
| 25 font-size: 90%; | 31 font-size: 90%; |
| 26 font-weight: normal; | 32 font-weight: normal; |
| 27 } | 33 } |
| 28 | 34 |
| 29 #net-export-main { | 35 #net-export-main { |
| 30 margin: 8px; | 36 margin: 8px; |
| 31 } | 37 } |
| 32 | 38 |
| 33 #export-view-file-path-text { | 39 #export-view-file-path-text { |
| 34 white-space: pre-wrap; | 40 white-space: pre-wrap; |
| 35 word-wrap: break-word; | 41 word-wrap: break-word; |
| 36 } | 42 } |
| OLD | NEW |