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

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

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: js Created 4 years 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,
8 height 180ms ease; 8 height 180ms ease;
Dan Beam 2016/11/29 06:17:12 does this fit in one line now? either way, indent
Eric Willigers 2016/11/30 04:04:56 Done.
9 } 9 }
10 10
11 #bubble { 11 #bubble {
12 z-index: 1; 12 z-index: 1;
13 } 13 }
14 14
15 #signin-banner-container1 { 15 #signin-banner-container1 {
16 bottom: 100%; 16 bottom: 100%;
17 margin-bottom: 10px; 17 margin-bottom: 10px;
18 position: absolute; 18 position: absolute;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 display: inline-block; 52 display: inline-block;
53 } 53 }
54 54
55 html[screen=lock] #signin-banner { 55 html[screen=lock] #signin-banner {
56 display: inline-block; 56 display: inline-block;
57 opacity: 0; 57 opacity: 0;
58 visibility: hidden; 58 visibility: hidden;
59 } 59 }
60 60
61 html[screen=lock] #signin-banner.message-set { 61 html[screen=lock] #signin-banner.message-set {
62 -webkit-transition: opacity 1s; 62 transition: opacity 1s;
Dan Beam 2016/11/29 06:17:12 alpha
Eric Willigers 2016/11/30 04:04:56 Done.
63 opacity: 1; 63 opacity: 1;
64 visibility: visible; 64 visibility: visible;
65 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698