| 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 background-color: black; | 7 background-color: black; |
| 8 font-size: 84%; | 8 font-size: 84%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| (...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 | 613 |
| 614 .gallery > .toolbar button { | 614 .gallery > .toolbar button { |
| 615 background-color: transparent; | 615 background-color: transparent; |
| 616 border: 0; | 616 border: 0; |
| 617 padding: 0; | 617 padding: 0; |
| 618 position: relative; | 618 position: relative; |
| 619 } | 619 } |
| 620 | 620 |
| 621 .gallery > .toolbar paper-button:focus, | 621 .gallery > .toolbar paper-button:focus, |
| 622 .gallery > .toolbar button:focus { | 622 .gallery > .toolbar button:focus { |
| 623 background-color: rgba(0, 0, 0, 0.3); | 623 background-color: rgba(255, 255, 255, 0.2); |
| 624 } | 624 } |
| 625 | 625 |
| 626 .gallery > .toolbar button:focus { | 626 .gallery > .toolbar button:focus { |
| 627 outline: none; | 627 outline: none; |
| 628 } | 628 } |
| 629 | 629 |
| 630 .gallery > .toolbar button.using-mouse:focus { | 630 .gallery > .toolbar button.using-mouse:focus { |
| 631 background-color: transparent; | 631 background-color: transparent; |
| 632 } | 632 } |
| 633 | 633 |
| (...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1423 .thumbnail-view .animation-thumbnail { | 1423 .thumbnail-view .animation-thumbnail { |
| 1424 background-repeat: no-repeat; | 1424 background-repeat: no-repeat; |
| 1425 background-size: cover; | 1425 background-size: cover; |
| 1426 display: none; | 1426 display: none; |
| 1427 position: absolute; | 1427 position: absolute; |
| 1428 } | 1428 } |
| 1429 | 1429 |
| 1430 .thumbnail-view .animation-thumbnail.animating { | 1430 .thumbnail-view .animation-thumbnail.animating { |
| 1431 display: block; | 1431 display: block; |
| 1432 } | 1432 } |
| OLD | NEW |