OLD | NEW |
(Empty) | |
| 1 /* Copyright 2013 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 #debugging { |
| 7 display: flex; |
| 8 flex-flow: column; |
| 9 font-size: 16px; |
| 10 min-height: 423px; |
| 11 padding: 40px 17px 80px; |
| 12 text-align: center; |
| 13 width: 722px; |
| 14 } |
| 15 |
| 16 #debugging #debugging-controls { |
| 17 bottom: 40px; |
| 18 justify-content: center; |
| 19 margin-top: auto; |
| 20 } |
| 21 |
| 22 #debugging-controls button { |
| 23 margin: 0 10px; |
| 24 } |
| 25 |
| 26 #debugging #debugging-warning-icon { |
| 27 height: 112px; |
| 28 } |
| 29 |
| 30 #debugging #enable-debugging-warning-msg { |
| 31 color: #606060; |
| 32 font-size: 22px; |
| 33 padding: 5px 45px 30px; |
| 34 } |
| 35 |
| 36 .enable-debugging-text { |
| 37 color: #606060; |
| 38 } |
| 39 |
| 40 #debugging #debugging-warning-details, |
| 41 #debugging #debugging-done-msg { |
| 42 padding: 20px 40px 0; |
| 43 } |
| 44 |
| 45 #debugging #debugging-warning-restart { |
| 46 padding: 30px 40px 0; |
| 47 } |
| 48 |
| 49 #debugging #enable-debugging-wait-msg { |
| 50 display: inline-block; |
| 51 padding: 25px 0; |
| 52 vertical-align: middle; |
| 53 } |
| 54 |
| 55 #debugging #enable-debugging-spinner { |
| 56 margin-top: 0; |
| 57 vertical-align: middle; |
| 58 } |
| 59 |
| 60 #enable-debugging-passwords { |
| 61 margin-bottom: 10px; |
| 62 margin-top: 20px; |
| 63 } |
| 64 |
| 65 #enable-debugging-password-note { |
| 66 color: #808080; |
| 67 font-size: 12px; |
| 68 } |
| 69 |
| 70 .enable-debugging-password-label { |
| 71 width: 200px; |
| 72 } |
| 73 |
| 74 .enable-debugging-password-input { |
| 75 display: flex; |
| 76 flex-wrap: nowrap; |
| 77 justify-content: space-around; |
| 78 margin-top: 5px; |
| 79 } |
| 80 |
| 81 .done-specific, |
| 82 .error-specific, |
| 83 .remove-protection-specific, |
| 84 .setup-specific, |
| 85 .wait-specific { |
| 86 display: none; |
| 87 } |
| 88 |
| 89 .error-view .error-specific, |
| 90 .done-view .done-specific, |
| 91 .remove-protection-view .remove-protection-specific, |
| 92 .setup-view .setup-specific, |
| 93 .wait-view .wait-specific { |
| 94 display: block; |
| 95 } |
| 96 |
| 97 #debugging-remove-protection-button, |
| 98 #debugging-enable-button, |
| 99 #debugging-cancel-button, |
| 100 #debugging-ok-button { |
| 101 display: none; |
| 102 } |
| 103 |
| 104 .remove-protection-view #debugging-remove-protection-button, |
| 105 .remove-protection-view #debugging-cancel-button, |
| 106 .setup-view #debugging-enable-button, |
| 107 .setup-view #debugging-cancel-button, |
| 108 .done-view #debugging-ok-button, |
| 109 .error-view #debugging-ok-button { |
| 110 display: inline-block; |
| 111 } |
| 112 |
OLD | NEW |