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

Side by Side Diff: ui/login/account_picker/screen_account_picker.css

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 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 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 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 5
6 .account-picker.flying-pods #account-picker { 6 .account-picker.flying-pods #account-picker {
7 -webkit-transition: width 180ms ease, 7 transition: width 180ms ease, height 180ms ease;
8 height 180ms ease;
9 } 8 }
10 9
11 #bubble { 10 #bubble {
12 z-index: 1; 11 z-index: 1;
13 } 12 }
14 13
15 #signin-banner-container1 { 14 #signin-banner-container1 {
16 bottom: 100%; 15 bottom: 100%;
17 margin-bottom: 10px; 16 margin-bottom: 10px;
18 position: absolute; 17 position: absolute;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 display: inline-block; 51 display: inline-block;
53 } 52 }
54 53
55 html[screen=lock] #signin-banner { 54 html[screen=lock] #signin-banner {
56 display: inline-block; 55 display: inline-block;
57 opacity: 0; 56 opacity: 0;
58 visibility: hidden; 57 visibility: hidden;
59 } 58 }
60 59
61 html[screen=lock] #signin-banner.message-set { 60 html[screen=lock] #signin-banner.message-set {
62 -webkit-transition: opacity 1s;
63 opacity: 1; 61 opacity: 1;
62 transition: opacity 1s;
64 visibility: visible; 63 visibility: visible;
65 } 64 }
OLDNEW
« no previous file with comments | « ui/file_manager/gallery/css/gallery.css ('k') | ui/login/account_picker/screen_account_picker.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698