| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 background-color: white; | 7 background-color: white; |
| 8 color: black; | 8 color: black; |
| 9 margin: 10px; | 9 margin: 10px; |
| 10 } | 10 } |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 .link-button:active, | 50 .link-button:active, |
| 51 .link-button:focus, | 51 .link-button:focus, |
| 52 .link-button:hover { | 52 .link-button:hover { |
| 53 -webkit-box-shadow: none !important; | 53 -webkit-box-shadow: none !important; |
| 54 background: transparent none !important; | 54 background: transparent none !important; |
| 55 border: none !important; | 55 border: none !important; |
| 56 color: blue; | 56 color: blue; |
| 57 cursor: pointer; | 57 cursor: pointer; |
| 58 text-decoration: underline; | 58 text-decoration: underline; |
| 59 } | 59 } |
| 60 |
| 61 .displaytable { |
| 62 display: table; |
| 63 } |
| OLD | NEW |