| OLD | NEW |
| 1 /* Copyright 2016 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 #storageManagerPage { | 5 #storageManagerPage { |
| 6 width: 476px; | 6 width: 476px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #storageManagerPage h1 { | 9 #storageManagerPage h1 { |
| 10 font-size: 125%; /* go to 15px from 12px */ | 10 font-size: 125%; /* go to 15px from 12px */ |
| 11 padding: 15px 20px 14px; | 11 padding: 15px 20px 14px; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #storageManagerPage .content-area { | 14 #storageManagerPage .content-area { |
| 15 padding: 0 20px; | 15 padding: 0 20px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .storage-manager-section { | 18 .storage-manager-section { |
| 19 margin: 0; | 19 margin: 0; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .storage-manager-section:not(:last-child) { | |
| 23 margin-bottom: 30px; | |
| 24 } | |
| 25 | |
| 26 .storage-manager-item, | 22 .storage-manager-item, |
| 27 .storage-manager-subitem { | 23 .storage-manager-subitem { |
| 24 align-items: baseline; |
| 28 display: flex; | 25 display: flex; |
| 29 font-size: 125%; /* go to 15px from 12px */ | |
| 30 justify-content: space-between; | 26 justify-content: space-between; |
| 31 margin: 14px 0; | |
| 32 } | 27 } |
| 33 | 28 |
| 34 .storage-manager-item { | 29 .storage-manager-item { |
| 35 color: black; | 30 color: black; |
| 31 margin: 18px 0; |
| 32 } |
| 33 |
| 34 .storage-manager-item .storage-manager-item-label { |
| 35 font-size: 125%; /* go to 15px from 12px */ |
| 36 } | 36 } |
| 37 | 37 |
| 38 .storage-manager-subitem { | 38 .storage-manager-subitem { |
| 39 -webkit-padding-start: 20px; | 39 -webkit-padding-start: 20px; |
| 40 margin: 14px 0; |
| 40 } | 41 } |
| 41 | 42 |
| 42 .storage-manager-subitem .storage-manager-item-size { | 43 .storage-manager-subitem .storage-manager-item-size { |
| 43 color: rgba(0, 0, 0, 0.54); | 44 color: rgba(0, 0, 0, 0.54); |
| 44 } | 45 } |
| 45 | 46 |
| 47 #storage-manager-section-capacity { |
| 48 margin-bottom: 23px; |
| 49 } |
| 50 |
| 51 #storage-manager-section-capacity .storage-manager-item { |
| 52 margin-bottom: 24px; |
| 53 margin-top: 18px; |
| 54 } |
| 55 |
| 46 #storage-manager-section-in-use { | 56 #storage-manager-section-in-use { |
| 47 margin-bottom: 45px; | 57 margin-bottom: 30px; |
| 48 } | 58 } |
| 49 | 59 |
| 50 #storage-manager-section-available { | 60 #storage-manager-section-available { |
| 51 margin-bottom: 30px; | 61 margin-bottom: 18px; |
| 52 } | 62 } |
| 53 | 63 |
| 54 .critically-low-space #storage-manager-message-critically-low-space, | 64 .critically-low-space #storage-manager-message-critically-low-space, |
| 55 .low-space #storage-manager-message-low-space { | 65 .low-space #storage-manager-message-low-space { |
| 56 display: block; | 66 display: block; |
| 57 } | 67 } |
| 58 | 68 |
| 59 .storage-manager-message-area { | 69 .storage-manager-message-area { |
| 60 background-color: rgb(245, 245, 245); | 70 background-color: rgb(245, 245, 245); |
| 61 display: none; | 71 display: none; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 border-radius: 2px; | 110 border-radius: 2px; |
| 101 } | 111 } |
| 102 | 112 |
| 103 .critically-low-space #storage-bar-progress::-webkit-progress-value { | 113 .critically-low-space #storage-bar-progress::-webkit-progress-value { |
| 104 background-color: rgb(219, 68, 55); | 114 background-color: rgb(219, 68, 55); |
| 105 } | 115 } |
| 106 | 116 |
| 107 .low-space #storage-bar-progress::-webkit-progress-value { | 117 .low-space #storage-bar-progress::-webkit-progress-value { |
| 108 background-color: rgb(255, 176, 0); | 118 background-color: rgb(255, 176, 0); |
| 109 } | 119 } |
| OLD | NEW |