| 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 min-width: 320px; | 6 width: 400px; |
| 7 } |
| 8 |
| 9 .storage-manager-section { |
| 10 margin: 0 40px; |
| 11 } |
| 12 |
| 13 .storage-manager-section:not(:last-child) { |
| 14 margin-bottom: 28px; |
| 7 } | 15 } |
| 8 | 16 |
| 9 .storage-manager-item, | 17 .storage-manager-item, |
| 10 .storage-manager-subitem { | 18 .storage-manager-subitem { |
| 11 -webkit-padding-end: 20px; | |
| 12 display: flex; | 19 display: flex; |
| 13 font-size: 108.33%; /* go to 13px from 12px */ | 20 font-size: 108.33%; /* go to 13px from 12px */ |
| 14 justify-content: space-between; | 21 justify-content: space-between; |
| 15 margin: 12px 0; | 22 margin: 12px 0; |
| 16 } | 23 } |
| 17 | 24 |
| 18 .storage-manager-item { | 25 .storage-manager-item { |
| 19 -webkit-padding-start: 20px; | 26 font-weight: 500; |
| 20 } | |
| 21 | |
| 22 .storage-manager-subitem { | |
| 23 -webkit-padding-start: 40px; | |
| 24 } | 27 } |
| 25 | 28 |
| 26 .storage-manager-item-size { | 29 .storage-manager-item-size { |
| 27 color: rgb(153, 153, 153); | 30 color: rgb(153, 153, 153); |
| 28 } | 31 } |
| 32 |
| 33 .critically-low-space #storage-manager-message-critically-low-space, |
| 34 .low-space #storage-manager-message-low-space { |
| 35 display: block; |
| 36 } |
| 37 |
| 38 .storage-manager-message-area { |
| 39 background-color: rgb(245, 245, 245); |
| 40 display: none; |
| 41 padding: 20px 24px; |
| 42 } |
| 43 |
| 44 .storage-manager-message-icon { |
| 45 background-size: 100%; |
| 46 height: 20px; |
| 47 width: 20px; |
| 48 } |
| 49 |
| 50 #storage-manager-message-critically-low-space .storage-manager-message-icon { |
| 51 background-image: -webkit-image-set( |
| 52 url(space_critically_low.png) 1x, |
| 53 url(2x/space_critically_low.png) 2x); |
| 54 } |
| 55 |
| 56 #storage-manager-message-low-space .storage-manager-message-icon { |
| 57 background-image: -webkit-image-set( |
| 58 url(space_low.png) 1x, |
| 59 url(2x/space_low.png) 2x); |
| 60 } |
| 61 |
| 62 .storage-manager-message-title { |
| 63 align-items: center; |
| 64 display: flex; |
| 65 } |
| 66 |
| 67 .storage-manager-message-title span { |
| 68 font-size: 115%; |
| 69 font-weight: 500; |
| 70 margin: 0 10px; |
| 71 } |
| 72 |
| 73 .storage-manager-message-area p { |
| 74 color: rgb(90, 90, 90); |
| 75 } |
| 76 |
| 77 #storage-bar-background { |
| 78 background-color: rgb(229, 229, 229); |
| 79 border-radius: 3px; |
| 80 height: 6px; |
| 81 position: relative; |
| 82 width: 100%; |
| 83 } |
| 84 |
| 85 #storage-bar-progress { |
| 86 background-color: rgb(74, 144, 226); |
| 87 border-radius: 3px; |
| 88 height: 6px; |
| 89 position: absolute; |
| 90 width: 0; |
| 91 } |
| 92 |
| 93 .critically-low-space #storage-bar-progress { |
| 94 background-color: rgb(219, 68, 55); |
| 95 } |
| 96 |
| 97 .low-space #storage-bar-progress { |
| 98 background-color: rgb(255, 176, 0); |
| 99 } |
| OLD | NEW |