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

Side by Side Diff: chrome/browser/resources/hotword_audio_verification/style.css

Issue 2688353003: Remove webkit prefixes for transform and perspective in chrome/ styles (Closed)
Patch Set: 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 /* TODO(xdai): Remove hard-coded font-family for 'Roboto'. */ 5 /* TODO(xdai): Remove hard-coded font-family for 'Roboto'. */
6 6
7 * { 7 * {
8 box-sizing: border-box; 8 box-sizing: border-box;
9 color: rgba(0, 0, 0, .54); 9 color: rgba(0, 0, 0, .54);
10 font-family: Roboto, 'Noto Sans', sans-serif; 10 font-family: Roboto, 'Noto Sans', sans-serif;
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 line-height: 13px; 168 line-height: 13px;
169 padding-top: 3px; 169 padding-top: 3px;
170 vertical-align: top; 170 vertical-align: top;
171 } 171 }
172 172
173 .train.recorded .text { 173 .train.recorded .text {
174 color: rgba(66, 133, 244, 1); 174 color: rgba(66, 133, 244, 1);
175 } 175 }
176 176
177 @-webkit-keyframes rotate { 177 @-webkit-keyframes rotate {
178 from { -webkit-transform: rotate(0); } 178 from { transform: rotate(0); }
179 to { -webkit-transform: rotate(359deg); } 179 to { transform: rotate(359deg); }
180 } 180 }
181 181
182 .train.listening .icon { 182 .train.listening .icon {
183 -webkit-animation: rotate 2s linear infinite; 183 -webkit-animation: rotate 2s linear infinite;
184 background: -webkit-image-set( 184 background: -webkit-image-set(
185 url(../images/placeholder-loader-1x.png) 1x, 185 url(../images/placeholder-loader-1x.png) 1x,
186 url(../images/placeholder-loader-2x.png) 2x) 186 url(../images/placeholder-loader-2x.png) 2x)
187 no-repeat; 187 no-repeat;
188 } 188 }
189 189
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 background: none; 352 background: none;
353 border: none; 353 border: none;
354 color: rgb(58, 218, 255); 354 color: rgb(58, 218, 255);
355 float: right; 355 float: right;
356 height: 32px; 356 height: 32px;
357 margin-left: 18px; 357 margin-left: 18px;
358 min-width: 56px; 358 min-width: 56px;
359 padding: 0 8px 0 8px; 359 padding: 0 8px 0 8px;
360 text-transform: uppercase; 360 text-transform: uppercase;
361 } 361 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/history/history.css ('k') | chrome/browser/resources/inspect/inspect.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698