Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(722)

Side by Side Diff: ui/file_manager/gallery/css/gallery.css

Issue 866893004: Gallery: Remove position: absolute; line for redo button. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698