| 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 -moz-box-sizing: border-box; | 9 -moz-box-sizing: border-box; |
| 10 box-sizing: border-box; | 10 box-sizing: border-box; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 border: 1px solid black; | 107 border: 1px solid black; |
| 108 font-size: 80%; | 108 font-size: 80%; |
| 109 padding: 5px; | 109 padding: 5px; |
| 110 z-index: 1; | 110 z-index: 1; |
| 111 } | 111 } |
| 112 | 112 |
| 113 /** | 113 /** |
| 114 * Styling for elements that show a help window on mouse over. | 114 * Styling for elements that show a help window on mouse over. |
| 115 */ | 115 */ |
| 116 .mouse-over-help-hover { | 116 .mouse-over-help-hover { |
| 117 color: blue; |
| 117 cursor: help; | 118 cursor: help; |
| 119 font-weight: bold; |
| 118 } | 120 } |
| OLD | NEW |