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

Unified Diff: chrome/browser/resources/hotword_audio_verification/style.css

Issue 666073005: Hotword Audio Verification App: UI polishes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add back is=action-link I accidently removed when merging Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698