| OLD | NEW |
| 1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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 body { | 5 body { |
| 6 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 7 font-family: Noto Sans UI, sans-serif; | 7 font-family: Noto Sans UI, sans-serif; |
| 8 font-size: 84%; | 8 font-size: 84%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| (...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1121 .gallery:not([spinner]) .spinner { | 1121 .gallery:not([spinner]) .spinner { |
| 1122 display: none; | 1122 display: none; |
| 1123 } | 1123 } |
| 1124 | 1124 |
| 1125 .gallery .error-banner { | 1125 .gallery .error-banner { |
| 1126 -webkit-box-align: center; | 1126 -webkit-box-align: center; |
| 1127 -webkit-box-orient: horizontal; | 1127 -webkit-box-orient: horizontal; |
| 1128 -webkit-box-pack: center; | 1128 -webkit-box-pack: center; |
| 1129 background-color: rgba(24, 24, 24, 1); | 1129 background-color: rgba(24, 24, 24, 1); |
| 1130 background-image: -webkit-image-set( | 1130 background-image: -webkit-image-set( |
| 1131 url(../../file_manager/foreground/images/media/error.png) 1x, | 1131 url(../images/100/error.png) 1x, |
| 1132 url(../../file_manager/foreground/images/media/2x/error.png) 2x); | 1132 url(../images/200/error.png) 2x); |
| 1133 background-position: 25px center; | 1133 background-position: 25px center; |
| 1134 background-repeat: no-repeat; | 1134 background-repeat: no-repeat; |
| 1135 color: white; | 1135 color: white; |
| 1136 display: -webkit-box; | 1136 display: -webkit-box; |
| 1137 height: 54px; | 1137 height: 54px; |
| 1138 padding-left: 70px; | 1138 padding-left: 70px; |
| 1139 padding-right: 35px; | 1139 padding-right: 35px; |
| 1140 } | 1140 } |
| 1141 | 1141 |
| 1142 .gallery:not([error]) .error-banner { | 1142 .gallery:not([error]) .error-banner { |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1331 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) | 1331 url(chrome://resources/images/2x/apps/topbar_button_maximize.png) 2x) |
| 1332 center; | 1332 center; |
| 1333 } | 1333 } |
| 1334 | 1334 |
| 1335 .gallery > .header > .close-button { | 1335 .gallery > .header > .close-button { |
| 1336 background: -webkit-image-set( | 1336 background: -webkit-image-set( |
| 1337 url(chrome://resources/images/apps/topbar_button_close.png) 1x, | 1337 url(chrome://resources/images/apps/topbar_button_close.png) 1x, |
| 1338 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) | 1338 url(chrome://resources/images/2x/apps/topbar_button_close.png) 2x) |
| 1339 center; | 1339 center; |
| 1340 } | 1340 } |
| OLD | NEW |