Chromium Code Reviews| Index: chrome/browser/resources/hotword_audio_verification/style.css |
| diff --git a/chrome/browser/resources/hotword_audio_verification/style.css b/chrome/browser/resources/hotword_audio_verification/style.css |
| index 8d93da9659c50dfdfbddd5799119d40139da13a5..593ad11912d761c7a255755cd81a1f2ae961faef 100644 |
| --- a/chrome/browser/resources/hotword_audio_verification/style.css |
| +++ b/chrome/browser/resources/hotword_audio_verification/style.css |
| @@ -76,8 +76,9 @@ div.content { |
| } |
| -button.grayed-out { |
| +.buttonbar button.grayed-out { |
| color: rgba(0, 0, 0, .28); |
| + text-transform: none; |
| } |
| .col-3 { |
| @@ -180,7 +181,16 @@ button.primary { |
| color: rgb(213, 0, 0); |
| } |
| +@-webkit-keyframes rotate { |
| + from { -webkit-transform: rotate(0); } |
| + to { -webkit-transform: rotate(359deg); } |
| +} |
| + |
| .train.listening .icon { |
| + -webkit-animation-duration: 2s; |
| + -webkit-animation-iteration-count: infinite; |
| + -webkit-animation-name: rotate; |
| + -webkit-animation-timing-function: linear; |
|
Dan Beam
2014/10/27 16:10:33
nit: -webkit-animation: rotate 2s linear infinite;
kcarattini
2014/10/27 23:20:10
Done.
|
| background: url(../images/placeholder-loader-1x.png) no-repeat; |
| } |