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

Side by Side Diff: chrome/browser/resources/file_manager/css/gallery.css

Issue 11946011: Fixed css for selected buttons in Files.app's photo editor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« 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) 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 background-color: rgba(240, 240, 240, 1); 569 background-color: rgba(240, 240, 240, 1);
570 color: black; 570 color: black;
571 } 571 }
572 572
573 .gallery > .toolbar button.autofix { 573 .gallery > .toolbar button.autofix {
574 background-image: -webkit-image-set( 574 background-image: -webkit-image-set(
575 url('../images/gallery/icon_autofix.png') 1x, 575 url('../images/gallery/icon_autofix.png') 1x,
576 url('../images/gallery/2x/icon_autofix.png') 2x); 576 url('../images/gallery/2x/icon_autofix.png') 2x);
577 } 577 }
578 578
579 .gallery > .toolbar button.autofix:active,
579 .gallery > .toolbar button.autofix[pressed] { 580 .gallery > .toolbar button.autofix[pressed] {
580 background-image: -webkit-image-set( 581 background-image: -webkit-image-set(
581 url('../images/gallery/icon_autofix_selected.png') 1x, 582 url('../images/gallery/icon_autofix_selected.png') 1x,
582 url('../images/gallery/2x/icon_autofix_selected.png') 2x); 583 url('../images/gallery/2x/icon_autofix_selected.png') 2x);
583 } 584 }
584 585
585 .gallery > .toolbar button.crop { 586 .gallery > .toolbar button.crop {
586 background-image: -webkit-image-set( 587 background-image: -webkit-image-set(
587 url('../images/gallery/icon_crop.png') 1x, 588 url('../images/gallery/icon_crop.png') 1x,
588 url('../images/gallery/2x/icon_crop.png') 2x); 589 url('../images/gallery/2x/icon_crop.png') 2x);
589 } 590 }
590 591
592 .gallery > .toolbar button.crop:active,
591 .gallery > .toolbar button.crop[pressed] { 593 .gallery > .toolbar button.crop[pressed] {
592 background-image: -webkit-image-set( 594 background-image: -webkit-image-set(
593 url('../images/gallery/icon_crop_selected.png') 1x, 595 url('../images/gallery/icon_crop_selected.png') 1x,
594 url('../images/gallery/2x/icon_crop_selected.png') 2x); 596 url('../images/gallery/2x/icon_crop_selected.png') 2x);
595 } 597 }
596 598
597 .gallery > .toolbar button.exposure { 599 .gallery > .toolbar button.exposure {
598 background-image: -webkit-image-set( 600 background-image: -webkit-image-set(
599 url('../images/gallery/icon_brightness.png') 1x, 601 url('../images/gallery/icon_brightness.png') 1x,
600 url('../images/gallery/2x/icon_brightness.png') 2x); 602 url('../images/gallery/2x/icon_brightness.png') 2x);
601 } 603 }
602 604
605 .gallery > .toolbar button.exposure:active,
603 .gallery > .toolbar button.exposure[pressed] { 606 .gallery > .toolbar button.exposure[pressed] {
604 background-image: -webkit-image-set( 607 background-image: -webkit-image-set(
605 url('../images/gallery/icon_brightness_selected.png') 1x, 608 url('../images/gallery/icon_brightness_selected.png') 1x,
606 url('../images/gallery/2x/icon_brightness_selected.png') 2x); 609 url('../images/gallery/2x/icon_brightness_selected.png') 2x);
607 } 610 }
608 611
609 .gallery > .toolbar button.rotate_right { 612 .gallery > .toolbar button.rotate_right {
610 background-image: -webkit-image-set( 613 background-image: -webkit-image-set(
611 url('../images/gallery/icon_rotate.png') 1x, 614 url('../images/gallery/icon_rotate.png') 1x,
612 url('../images/gallery/2x/icon_rotate.png') 2x); 615 url('../images/gallery/2x/icon_rotate.png') 2x);
613 } 616 }
614 617
618 .gallery > .toolbar button.rotate_right:active,
615 .gallery > .toolbar button.rotate_right[pressed] { 619 .gallery > .toolbar button.rotate_right[pressed] {
616 background-image: -webkit-image-set( 620 background-image: -webkit-image-set(
617 url('../images/gallery/icon_rotate_selected.png') 1x, 621 url('../images/gallery/icon_rotate_selected.png') 1x,
618 url('../images/gallery/2x/icon_rotate_selected.png') 2x); 622 url('../images/gallery/2x/icon_rotate_selected.png') 2x);
619 } 623 }
620 624
621 .gallery > .toolbar button.rotate_left { 625 .gallery > .toolbar button.rotate_left {
622 background-image: -webkit-image-set( 626 background-image: -webkit-image-set(
623 url('../images/gallery/icon_rotate_left.png') 1x, 627 url('../images/gallery/icon_rotate_left.png') 1x,
624 url('../images/gallery/2x/icon_rotate_left.png') 2x); 628 url('../images/gallery/2x/icon_rotate_left.png') 2x);
625 } 629 }
626 630
631 .gallery > .toolbar button.rotate_left:active,
627 .gallery > .toolbar button.rotate_left[pressed] { 632 .gallery > .toolbar button.rotate_left[pressed] {
628 background-image: -webkit-image-set( 633 background-image: -webkit-image-set(
629 url('../images/gallery/icon_rotate_left_selected.png') 1x, 634 url('../images/gallery/icon_rotate_left_selected.png') 1x,
630 url('../images/gallery/2x/icon_rotate_left_selected.png') 2x); 635 url('../images/gallery/2x/icon_rotate_left_selected.png') 2x);
631 } 636 }
632 637
633 .gallery > .toolbar button.undo { 638 .gallery > .toolbar button.undo {
634 background-image: -webkit-image-set( 639 background-image: -webkit-image-set(
635 url('../images/gallery/icon_undo.png') 1x, 640 url('../images/gallery/icon_undo.png') 1x,
636 url('../images/gallery/2x/icon_undo.png') 2x); 641 url('../images/gallery/2x/icon_undo.png') 2x);
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
1263 url('../images/gallery/slideshow-pause.png') 1x, 1268 url('../images/gallery/slideshow-pause.png') 1x,
1264 url('../images/gallery/2x/slideshow-pause.png') 2x); 1269 url('../images/gallery/2x/slideshow-pause.png') 2x);
1265 } 1270 }
1266 1271
1267 .slideshow-toolbar > .slideshow-end { 1272 .slideshow-toolbar > .slideshow-end {
1268 background-image: -webkit-image-set( 1273 background-image: -webkit-image-set(
1269 url('../images/gallery/slideshow-end.png') 1x, 1274 url('../images/gallery/slideshow-end.png') 1x,
1270 url('../images/gallery/2x/slideshow-end.png') 2x); 1275 url('../images/gallery/2x/slideshow-end.png') 2x);
1271 margin-left: -2px; 1276 margin-left: -2px;
1272 } 1277 }
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