OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 .website-settings-page { | 5 #website-settings-page { |
6 width: 540px; | 6 max-height: 445px; |
| 7 min-width: 540px; |
| 8 } |
| 9 |
| 10 .website-column-headers { |
| 11 padding: 3px 0 6px; |
7 } | 12 } |
8 | 13 |
9 .website-header-controls { | 14 .website-header-controls { |
10 display: flex; | 15 display: flex; |
11 } | 16 } |
12 | 17 |
13 .resource-type-select { | 18 .resource-type-select { |
14 -webkit-margin-end: auto; | 19 -webkit-margin-end: auto; |
| 20 min-width: 170px; |
| 21 } |
| 22 |
| 23 #website-settings-search-box { |
| 24 -webkit-margin-start: 35px; |
| 25 width: 165px; |
| 26 } |
| 27 |
| 28 #website-settings-page .action-area { |
| 29 padding-bottom: 20px; |
| 30 } |
| 31 |
| 32 .content-area.website-list-content-area { |
| 33 display: flex; |
| 34 flex-direction: column; |
15 } | 35 } |
16 | 36 |
17 /* Styles for the origin list elements in the website settings page. */ | 37 /* Styles for the origin list elements in the website settings page. */ |
18 .origin-list { | 38 #origin-list { |
19 border: 1px solid #d9d9d9; | 39 border: 1px solid #d9d9d9; |
20 margin: 5px 0 0; | 40 margin: 5px 0 0; |
21 min-height: 0; | 41 min-height: 287px; |
22 } | 42 } |
23 | 43 |
24 .origin-list-item { | 44 #origin-list-item { |
25 display: flex; | 45 height: 30px; |
26 justify-content: space-between; | |
27 } | 46 } |
28 | 47 |
29 .local-storage-usage { | 48 list.origin-list .favicon-cell { |
30 margin: auto 0; | 49 -webkit-margin-start: 6px; |
| 50 -webkit-padding-start: 21px; |
| 51 font-family: Noto Sans; |
| 52 font-size: 13px; |
31 } | 53 } |
OLD | NEW |