| 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 .page-navigation { | 35 .page-navigation { |
| 36 -webkit-margin-end: 4px; | 36 -webkit-margin-end: 4px; |
| 37 background-color: #ebeff9; | 37 background-color: #ebeff9; |
| 38 padding: 8px; | 38 padding: 8px; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .footer { | 41 .footer { |
| 42 height: 24px; | 42 height: 24px; |
| 43 } | 43 } |
| 44 |
| 45 /* TODO(jhawkins): Refactor button styling and remove !important here. This is |
| 46 * currently necessary because individual page button element selectors have |
| 47 * higher specificity. |
| 48 */ |
| 49 .link-button, |
| 50 .link-button:active, |
| 51 .link-button:focus, |
| 52 .link-button:hover { |
| 53 -webkit-box-shadow: none !important; |
| 54 background: transparent none !important; |
| 55 border: none !important; |
| 56 color: blue; |
| 57 cursor: pointer; |
| 58 text-decoration: underline; |
| 59 } |
| OLD | NEW |