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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 url('../images/gallery/icon_rotate_left_selected.png') 1x, | 659 url('../images/gallery/icon_rotate_left_selected.png') 1x, |
660 url('../images/gallery/2x/icon_rotate_left_selected.png') 2x); | 660 url('../images/gallery/2x/icon_rotate_left_selected.png') 2x); |
661 } | 661 } |
662 | 662 |
663 .gallery > .toolbar button.undo { | 663 .gallery > .toolbar button.undo { |
664 background-image: -webkit-image-set( | 664 background-image: -webkit-image-set( |
665 url('../images/gallery/icon_undo.png') 1x, | 665 url('../images/gallery/icon_undo.png') 1x, |
666 url('../images/gallery/2x/icon_undo.png') 2x); | 666 url('../images/gallery/2x/icon_undo.png') 2x); |
667 } | 667 } |
668 | 668 |
| 669 .gallery > .toolbar button.undo:active, |
| 670 .gallery > .toolbar button.undo[pressed] { |
| 671 background-image: -webkit-image-set( |
| 672 url('../images/gallery/icon_undo_selected.png') 1x, |
| 673 url('../images/gallery/2x/icon_undo_selected.png') 2x); |
| 674 } |
| 675 |
669 .gallery > .toolbar button.redo { | 676 .gallery > .toolbar button.redo { |
670 background-image: -webkit-image-set( | 677 background-image: -webkit-image-set( |
671 url('../images/gallery/icon_redo.png') 1x, | 678 url('../images/gallery/icon_redo.png') 1x, |
672 url('../images/gallery/2x/icon_redo.png') 2x); | 679 url('../images/gallery/2x/icon_redo.png') 2x); |
673 position: absolute; /* Exclude from center-packing*/ | 680 position: absolute; /* Exclude from center-packing*/ |
674 } | 681 } |
675 | 682 |
| 683 .gallery > .toolbar button.redo:active, |
| 684 .gallery > .toolbar button.redo[pressed] { |
| 685 background-image: -webkit-image-set( |
| 686 url('../images/gallery/icon_redo_selected.png') 1x, |
| 687 url('../images/gallery/2x/icon_redo_selected.png') 2x); |
| 688 } |
| 689 |
676 .gallery > .toolbar button[disabled] { | 690 .gallery > .toolbar button[disabled] { |
677 opacity: 0.5; | 691 opacity: 0.5; |
678 pointer-events: none; | 692 pointer-events: none; |
679 } | 693 } |
680 | 694 |
681 .gallery > .toolbar button[hidden] { | 695 .gallery > .toolbar button[hidden] { |
682 display: none; | 696 display: none; |
683 } | 697 } |
684 | 698 |
685 .gallery[mode='slide'] > .toolbar > button.mode { | 699 .gallery[mode='slide'] > .toolbar > button.mode { |
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1282 url('../images/gallery/slideshow-pause.png') 1x, | 1296 url('../images/gallery/slideshow-pause.png') 1x, |
1283 url('../images/gallery/2x/slideshow-pause.png') 2x); | 1297 url('../images/gallery/2x/slideshow-pause.png') 2x); |
1284 } | 1298 } |
1285 | 1299 |
1286 .slideshow-toolbar > .slideshow-end { | 1300 .slideshow-toolbar > .slideshow-end { |
1287 background-image: -webkit-image-set( | 1301 background-image: -webkit-image-set( |
1288 url('../images/gallery/slideshow-end.png') 1x, | 1302 url('../images/gallery/slideshow-end.png') 1x, |
1289 url('../images/gallery/2x/slideshow-end.png') 2x); | 1303 url('../images/gallery/2x/slideshow-end.png') 2x); |
1290 margin-left: -2px; | 1304 margin-left: -2px; |
1291 } | 1305 } |
OLD | NEW |