Chromium Code Reviews| 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-size: 84%; | 7 font-size: 84%; |
| 8 margin: 0; | 8 margin: 0; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1104 | 1104 |
| 1105 .gallery .share-menu > div > img { | 1105 .gallery .share-menu > div > img { |
| 1106 display: block; | 1106 display: block; |
| 1107 margin-right: 5px; | 1107 margin-right: 5px; |
| 1108 } | 1108 } |
| 1109 | 1109 |
| 1110 /* Load spinner and error banner. */ | 1110 /* Load spinner and error banner. */ |
| 1111 | 1111 |
| 1112 .gallery .spinner { | 1112 .gallery .spinner { |
| 1113 background-image: | 1113 background-image: |
| 1114 url(../../file_manager/foreground/images/common/spinner.svg); | 1114 url(chrome://resources/images/throbber.svg); |
| 1115 background-size: 100%; | 1115 background-size: 100%; |
| 1116 height: 16px; | 1116 height: 32px; |
|
Evan Stade
2015/05/07 22:53:45
This change is somewhat tangential to changing the
| |
| 1117 left: 50%; | 1117 left: 50%; |
| 1118 margin-left: -8px; | 1118 margin-left: -16px; |
| 1119 margin-top: -8px; | 1119 margin-top: -16px; |
| 1120 position: absolute; | 1120 position: absolute; |
| 1121 top: 50%; | 1121 top: 50%; |
| 1122 width: 16px; | 1122 width: 32px; |
| 1123 } | 1123 } |
| 1124 | 1124 |
| 1125 .gallery:not([spinner]) .spinner { | 1125 .gallery:not([spinner]) .spinner { |
| 1126 display: none; | 1126 display: none; |
| 1127 } | 1127 } |
| 1128 | 1128 |
| 1129 .gallery .error-banner { | 1129 .gallery .error-banner { |
| 1130 -webkit-box-align: center; | 1130 -webkit-box-align: center; |
| 1131 -webkit-box-orient: horizontal; | 1131 -webkit-box-orient: horizontal; |
| 1132 -webkit-box-pack: center; | 1132 -webkit-box-pack: center; |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1361 background-color: rgba(255, 0, 0, 0.3); | 1361 background-color: rgba(255, 0, 0, 0.3); |
| 1362 } | 1362 } |
| 1363 | 1363 |
| 1364 .debug-me .load-target-external-metadata::before { | 1364 .debug-me .load-target-external-metadata::before { |
| 1365 background-color: rgba(0, 255, 0, 0.3); | 1365 background-color: rgba(0, 255, 0, 0.3); |
| 1366 } | 1366 } |
| 1367 | 1367 |
| 1368 .debug-me .load-target-file-entry::before { | 1368 .debug-me .load-target-file-entry::before { |
| 1369 background-color: rgba(0, 0, 255, 0.3); | 1369 background-color: rgba(0, 0, 255, 0.3); |
| 1370 } | 1370 } |
| OLD | NEW |