| 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 header { | 5 <include src="../search_header.css"> |
| 6 align-items: center; | |
| 7 display: flex; | |
| 8 margin: 0 12px; | |
| 9 } | |
| 10 | |
| 11 header h2 { | |
| 12 flex: 1; | |
| 13 font-size: 1.5em; | |
| 14 margin: 15px 0; | |
| 15 } | |
| 16 | |
| 17 #term { | |
| 18 flex: none; | |
| 19 } | |
| 20 | |
| 21 #downloads-summary { | |
| 22 background-color: rgb(235, 239, 249); | |
| 23 border-top: 1px solid rgb(156, 194, 239); | |
| 24 display: flex; | |
| 25 padding: 5px 10px; | |
| 26 } | |
| 27 | 6 |
| 28 #downloads-summary-text { | 7 #downloads-summary-text { |
| 29 flex: 1; | |
| 30 font-weight: bold; | 8 font-weight: bold; |
| 31 } | 9 } |
| 32 | 10 |
| 33 #downloads-actions { | |
| 34 flex: none; | |
| 35 } | |
| 36 | |
| 37 .disabled-link { | 11 .disabled-link { |
| 38 color: #999; | 12 color: #999; |
| 39 text-decoration: none; | 13 text-decoration: none; |
| 40 } | 14 } |
| 41 | 15 |
| 42 #downloads-actions > a, | 16 #downloads-actions > a, |
| 43 #downloads-actions > .disabled-link { | 17 #downloads-actions > .disabled-link { |
| 44 -webkit-margin-start: 10px; | 18 -webkit-margin-start: 10px; |
| 45 } | 19 } |
| 46 | 20 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 | 141 |
| 168 .controls a { | 142 .controls a { |
| 169 -webkit-margin-end: 16px; | 143 -webkit-margin-end: 16px; |
| 170 color: #777; | 144 color: #777; |
| 171 } | 145 } |
| 172 | 146 |
| 173 #downloads-pagination { | 147 #downloads-pagination { |
| 174 -webkit-margin-start: 18px; | 148 -webkit-margin-start: 18px; |
| 175 padding-top: 24px; | 149 padding-top: 24px; |
| 176 } | 150 } |
| OLD | NEW |