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

Side by Side Diff: ui/webui/resources/css/overlay.css

Issue 893403004: webui: make 0 into 0ms when it's a <time>. (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
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 /* The shield that overlays the background. */ 5 /* The shield that overlays the background. */
6 .overlay { 6 .overlay {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 -webkit-box-pack: center; 9 -webkit-box-pack: center;
10 /* TODO(dbeam): remove perspective when http://crbug.com/374970 is fixed. */ 10 /* TODO(dbeam): remove perspective when http://crbug.com/374970 is fixed. */
(...skipping 28 matching lines...) Expand all
39 display: -webkit-box; 39 display: -webkit-box;
40 min-width: 400px; 40 min-width: 400px;
41 padding: 0; 41 padding: 0;
42 position: relative; 42 position: relative;
43 z-index: 0; 43 z-index: 0;
44 } 44 }
45 45
46 /* If the options page is loading don't do the transition. */ 46 /* If the options page is loading don't do the transition. */
47 .loading .overlay, 47 .loading .overlay,
48 .loading .overlay .page { 48 .loading .overlay .page {
49 -webkit-transition-duration: 0 !important; 49 -webkit-transition-duration: 0ms !important;
50 } 50 }
51 51
52 /* keyframes used to pulse the overlay */ 52 /* keyframes used to pulse the overlay */
53 @-webkit-keyframes pulse { 53 @-webkit-keyframes pulse {
54 0% { 54 0% {
55 -webkit-transform: scale(1); 55 -webkit-transform: scale(1);
56 } 56 }
57 40% { 57 40% {
58 -webkit-transform: scale(1.02); 58 -webkit-transform: scale(1.02);
59 } 59 }
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 #overlay-container-1 { 194 #overlay-container-1 {
195 z-index: 11; 195 z-index: 11;
196 } 196 }
197 #overlay-container-2 { 197 #overlay-container-2 {
198 z-index: 12; 198 z-index: 12;
199 } 199 }
200 200
201 .transparent { 201 .transparent {
202 opacity: 0; 202 opacity: 0;
203 } 203 }
OLDNEW
« ui/file_manager/gallery/css/gallery.css ('K') | « ui/webui/resources/css/chrome_shared.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698