OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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: Open Sans, Droid Sans Fallback, sans-serif; | 7 font-family: Open Sans, Droid Sans Fallback, sans-serif; |
8 font-size: 84%; | 8 font-size: 84%; |
9 margin: 0; | 9 margin: 0; |
10 } | 10 } |
(...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1048 .gallery .error-banner { | 1048 .gallery .error-banner { |
1049 -webkit-box-align: center; | 1049 -webkit-box-align: center; |
1050 -webkit-box-orient: horizontal; | 1050 -webkit-box-orient: horizontal; |
1051 -webkit-box-pack: center; | 1051 -webkit-box-pack: center; |
1052 background-color: rgba(24, 24, 24, 1); | 1052 background-color: rgba(24, 24, 24, 1); |
1053 background-image: -webkit-image-set( | 1053 background-image: -webkit-image-set( |
1054 url('../images/media/error.png') 1x, | 1054 url('../images/media/error.png') 1x, |
1055 url('../images/media/2x/error.png') 2x); | 1055 url('../images/media/2x/error.png') 2x); |
1056 background-position: 25px center; | 1056 background-position: 25px center; |
1057 background-repeat: no-repeat; | 1057 background-repeat: no-repeat; |
| 1058 color: white; |
1058 display: -webkit-box; | 1059 display: -webkit-box; |
1059 height: 54px; | 1060 height: 54px; |
1060 padding-left: 70px; | 1061 padding-left: 70px; |
1061 padding-right: 35px; | 1062 padding-right: 35px; |
1062 } | 1063 } |
1063 | 1064 |
1064 .gallery:not([error]) .error-banner { | 1065 .gallery:not([error]) .error-banner { |
1065 display: none; | 1066 display: none; |
1066 } | 1067 } |
1067 | 1068 |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1262 url('../images/gallery/slideshow-pause.png') 1x, | 1263 url('../images/gallery/slideshow-pause.png') 1x, |
1263 url('../images/gallery/2x/slideshow-pause.png') 2x); | 1264 url('../images/gallery/2x/slideshow-pause.png') 2x); |
1264 } | 1265 } |
1265 | 1266 |
1266 .slideshow-toolbar > .slideshow-end { | 1267 .slideshow-toolbar > .slideshow-end { |
1267 background-image: -webkit-image-set( | 1268 background-image: -webkit-image-set( |
1268 url('../images/gallery/slideshow-end.png') 1x, | 1269 url('../images/gallery/slideshow-end.png') 1x, |
1269 url('../images/gallery/2x/slideshow-end.png') 2x); | 1270 url('../images/gallery/2x/slideshow-end.png') 2x); |
1270 margin-left: -2px; | 1271 margin-left: -2px; |
1271 } | 1272 } |
OLD | NEW |