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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 .gallery > .toolbar button.undo[pressed] { | 685 .gallery > .toolbar button.undo[pressed] { |
686 background-image: -webkit-image-set( | 686 background-image: -webkit-image-set( |
687 url(../images/100/icon_undo_selected.png) 1x, | 687 url(../images/100/icon_undo_selected.png) 1x, |
688 url(../images/200/icon_undo_selected.png) 2x); | 688 url(../images/200/icon_undo_selected.png) 2x); |
689 } | 689 } |
690 | 690 |
691 .gallery > .toolbar button.redo { | 691 .gallery > .toolbar button.redo { |
692 background-image: -webkit-image-set( | 692 background-image: -webkit-image-set( |
693 url(../images/100/icon_redo.png) 1x, | 693 url(../images/100/icon_redo.png) 1x, |
694 url(../images/200/icon_redo.png) 2x); | 694 url(../images/200/icon_redo.png) 2x); |
695 position: absolute; /* Exclude from center-packing*/ | |
696 } | 695 } |
697 | 696 |
698 .gallery > .toolbar button.redo:active, | 697 .gallery > .toolbar button.redo:active, |
699 .gallery > .toolbar button.redo[pressed] { | 698 .gallery > .toolbar button.redo[pressed] { |
700 background-image: -webkit-image-set( | 699 background-image: -webkit-image-set( |
701 url(../images/100/icon_redo_selected.png) 1x, | 700 url(../images/100/icon_redo_selected.png) 1x, |
702 url(../images/200/icon_redo_selected.png) 2x); | 701 url(../images/200/icon_redo_selected.png) 2x); |
703 } | 702 } |
704 | 703 |
705 .gallery > .toolbar button[disabled], | 704 .gallery > .toolbar button[disabled], |
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1357 background-color: rgba(255, 0, 0, 0.3); | 1356 background-color: rgba(255, 0, 0, 0.3); |
1358 } | 1357 } |
1359 | 1358 |
1360 .debug-me .load-target-external-metadata::before { | 1359 .debug-me .load-target-external-metadata::before { |
1361 background-color: rgba(0, 255, 0, 0.3); | 1360 background-color: rgba(0, 255, 0, 0.3); |
1362 } | 1361 } |
1363 | 1362 |
1364 .debug-me .load-target-file-entry::before { | 1363 .debug-me .load-target-file-entry::before { |
1365 background-color: rgba(0, 0, 255, 0.3); | 1364 background-color: rgba(0, 0, 255, 0.3); |
1366 } | 1365 } |
OLD | NEW |