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

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

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (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 29 matching lines...) Expand all
40 .allow-offline-login .offline-login, 40 .allow-offline-login .offline-login,
41 .show-connecting-indicator .connecting-indicator { 41 .show-connecting-indicator .connecting-indicator {
42 display: block; 42 display: block;
43 } 43 }
44 44
45 #oobe.error-message #step-logo { 45 #oobe.error-message #step-logo {
46 z-index: 1; 46 z-index: 1;
47 } 47 }
48 48
49 .error-header { 49 .error-header {
50 /* A hack used to prevent aliasing on High-DPI displays. */
51 -webkit-transform: scale3d(1,1,1);
52 background-clip: padding-box; 50 background-clip: padding-box;
53 background-color: white; 51 background-color: white;
54 border-bottom: 1px solid rgb(238,238,238); 52 border-bottom: 1px solid rgb(238,238,238);
55 padding: 71px 20px 50px; 53 padding: 71px 20px 50px;
56 text-align: center; 54 text-align: center;
55 /* A hack used to prevent aliasing on High-DPI displays. */
56 transform: scale3d(1,1,1);
57 } 57 }
58 58
59 .error-icon { 59 .error-icon {
60 height: 64px; 60 height: 64px;
61 margin-bottom: 40px; 61 margin-bottom: 40px;
62 } 62 }
63 63
64 .error-title { 64 .error-title {
65 color: #606060; 65 color: #606060;
66 font-size: 15px; 66 font-size: 15px;
(...skipping 38 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