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

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

Issue 1549903002: Replace -webkit-transform with transform in Chrome UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase CL Created 4 years, 8 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
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 26 matching lines...) Expand all
37 outline: none; 37 outline: none;
38 position: absolute; 38 position: absolute;
39 width: 17px; 39 width: 17px;
40 } 40 }
41 41
42 .bubble .pointer:not(.bottom) { 42 .bubble .pointer:not(.bottom) {
43 top: -11px; 43 top: -11px;
44 } 44 }
45 45
46 .bubble .pointer.bottom { 46 .bubble .pointer.bottom {
47 -webkit-transform: rotate(180deg); 47 transform: rotate(180deg);
48 bottom: -11px; 48 bottom: -11px;
49 } 49 }
50 50
51 .bubble .close-x { 51 .bubble .close-x {
52 background: -webkit-image-set( 52 background: -webkit-image-set(
53 url(../../file_manager/foreground/images/common/close_x_gray.png) 1x, 53 url(../../file_manager/foreground/images/common/close_x_gray.png) 1x,
54 url(../../file_manager/foreground/images/common/2x/close_x_gray.png) 2x); 54 url(../../file_manager/foreground/images/common/2x/close_x_gray.png) 2x);
55 height: 21px; 55 height: 21px;
56 opacity: 0.3; 56 opacity: 0.3;
57 position: absolute; 57 position: absolute;
(...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 .thumbnail-view .animation-thumbnail { 1374 .thumbnail-view .animation-thumbnail {
1375 background-repeat: no-repeat; 1375 background-repeat: no-repeat;
1376 background-size: cover; 1376 background-size: cover;
1377 display: none; 1377 display: none;
1378 position: absolute; 1378 position: absolute;
1379 } 1379 }
1380 1380
1381 .thumbnail-view .animation-thumbnail.animating { 1381 .thumbnail-view .animation-thumbnail.animating {
1382 display: block; 1382 display: block;
1383 } 1383 }
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/foreground/css/tree.css ('k') | ui/file_manager/video_player/css/media_controls.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698