| 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 /* Only common styles should be declared here. */ | 6 /* Only common styles should be declared here. */ |
| 7 | 7 |
| 8 * { | 8 * { |
| 9 box-sizing: border-box; | 9 box-sizing: border-box; |
| 10 } | 10 } |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 .event-log a { | 97 .event-log a { |
| 98 font-weight: bold; | 98 font-weight: bold; |
| 99 text-decoration: none; | 99 text-decoration: none; |
| 100 } | 100 } |
| 101 | 101 |
| 102 /** | 102 /** |
| 103 * Styling for text indicating a potential problem or error state. | 103 * Styling for text indicating a potential problem or error state. |
| 104 */ | 104 */ |
| 105 .warning-text { | 105 .warning-text { |
| 106 color: red; | 106 color: rgb(238, 0, 0); |
| 107 } | 107 } |
| 108 | 108 |
| 109 /** | 109 /** |
| 110 * Styling for help windows that appear when mousing over an element. | 110 * Styling for help windows that appear when mousing over an element. |
| 111 */ | 111 */ |
| 112 .mouse-over-help { | 112 .mouse-over-help { |
| 113 background: #EEE; | 113 background: #EEE; |
| 114 border: 1px solid black; | 114 border: 1px solid black; |
| 115 font-size: 80%; | 115 font-size: 80%; |
| 116 padding: 5px; | 116 padding: 5px; |
| 117 z-index: 1; | 117 z-index: 1; |
| 118 } | 118 } |
| 119 | 119 |
| 120 /** | 120 /** |
| 121 * Styling for elements that show a help window on mouse over. | 121 * Styling for elements that show a help window on mouse over. |
| 122 */ | 122 */ |
| 123 .mouse-over-help-hover { | 123 .mouse-over-help-hover { |
| 124 color: blue; | 124 color: blue; |
| 125 cursor: help; | 125 cursor: help; |
| 126 } | 126 } |
| OLD | NEW |