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

Side by Side Diff: chrome/browser/resources/chromeos/login/screen_error_message.css

Issue 2689163002: Remove webkit prefixes for CSS Animation in chrome/ styles (Closed)
Patch Set: rebase 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 (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 #error-message { 5 #error-message {
6 width: 650px; 6 width: 650px;
7 } 7 }
8 8
9 .show-with-ui-state-update, 9 .show-with-ui-state-update,
10 .show-with-ui-state-signin, 10 .show-with-ui-state-signin,
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 105
106 .ui-state-auto-enrollment-error .error-guest-signin { 106 .ui-state-auto-enrollment-error .error-guest-signin {
107 display: none; 107 display: none;
108 } 108 }
109 109
110 .ui-state-auto-enrollment-error.allow-guest-signin 110 .ui-state-auto-enrollment-error.allow-guest-signin
111 .error-guest-signin-fix-network { 111 .error-guest-signin-fix-network {
112 display: block; 112 display: block;
113 } 113 }
114 114
115 @-webkit-keyframes connecting-indicator-ellipsis { 115 @keyframes connecting-indicator-ellipsis {
116 0% { 116 0% {
117 opacity: 0; 117 opacity: 0;
118 } 118 }
119 10% { 119 10% {
120 opacity: 1; 120 opacity: 1;
121 } 121 }
122 50% { 122 50% {
123 opacity: .8; 123 opacity: .8;
124 } 124 }
125 100% { 125 100% {
126 opacity: 0; 126 opacity: 0;
127 } 127 }
128 } 128 }
129 129
130 #connecting-indicator-ellipsis-1 { 130 #connecting-indicator-ellipsis-1 {
131 -webkit-animation: connecting-indicator-ellipsis 3s 0 infinite; 131 animation: connecting-indicator-ellipsis 3s 0 infinite;
132 } 132 }
133 133
134 #connecting-indicator-ellipsis-2 { 134 #connecting-indicator-ellipsis-2 {
135 -webkit-animation: connecting-indicator-ellipsis 3s 500ms infinite; 135 animation: connecting-indicator-ellipsis 3s 500ms infinite;
136 } 136 }
137 137
138 #connecting-indicator-ellipsis-3 { 138 #connecting-indicator-ellipsis-3 {
139 -webkit-animation: connecting-indicator-ellipsis 3s 1s infinite; 139 animation: connecting-indicator-ellipsis 3s 1s infinite;
140 } 140 }
141 141
142 #error-navigation { 142 #error-navigation {
143 color: rgba(0, 0, 0, .54); 143 color: rgba(0, 0, 0, .54);
144 left: 0; 144 left: 0;
145 position: absolute; 145 position: absolute;
146 right: 0; 146 right: 0;
147 top: 0; 147 top: 0;
148 z-index: 1; 148 z-index: 1;
149 } 149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698