| 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 max-height: 445px; | 6 max-height: 445px; |
| 7 min-width: 540px; | 7 min-width: 540px; |
| 8 } | 8 } |
| 9 | 9 |
| 10 .website-column-headers { | 10 .website-column-headers { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 } | 30 } |
| 31 | 31 |
| 32 .content-area.website-list-content-area { | 32 .content-area.website-list-content-area { |
| 33 display: flex; | 33 display: flex; |
| 34 flex-direction: column; | 34 flex-direction: column; |
| 35 } | 35 } |
| 36 | 36 |
| 37 /* Styles for the origin list elements in the website settings page. */ | 37 /* Styles for the origin list elements in the website settings page. */ |
| 38 #origin-list { | 38 #origin-list { |
| 39 border: 1px solid #d9d9d9; | 39 border: 1px solid #d9d9d9; |
| 40 font-family: Noto Sans; |
| 41 font-size: 13px; |
| 40 margin: 5px 0 0; | 42 margin: 5px 0 0; |
| 41 min-height: 287px; | 43 min-height: 287px; |
| 42 } | 44 } |
| 43 | 45 |
| 44 #origin-list-item { | 46 #origin-list-item { |
| 45 height: 30px; | 47 height: 30px; |
| 46 } | 48 } |
| 47 | 49 |
| 50 .local-storage-usage { |
| 51 color: #7f7f7f; |
| 52 margin: auto 0; |
| 53 } |
| 54 |
| 48 list.origin-list .favicon-cell { | 55 list.origin-list .favicon-cell { |
| 49 -webkit-margin-start: 6px; | 56 -webkit-margin-start: 6px; |
| 50 -webkit-padding-start: 21px; | 57 -webkit-padding-start: 21px; |
| 51 font-family: Noto Sans; | |
| 52 font-size: 13px; | |
| 53 } | 58 } |
| OLD | NEW |