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

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: Line length / correct close button 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 8825dd75b323cfb61be19f610bae56d5c8698cae..d00993bf887af74861677ad6e0f09b238a1349ab 100644
--- a/chrome/browser/resources/hotword_audio_verification/style.css
+++ b/chrome/browser/resources/hotword_audio_verification/style.css
@@ -75,9 +75,17 @@ div.content {
width: 60px;
}
+.speech-close {
+ background: url(../images/bt-close-1x.png);
+ float: right;
+ height: 60px;
+ width: 60px;
+}
+
-button.grayed-out {
+.buttonbar button.grayed-out {
color: rgba(0, 0, 0, .28);
+ text-transform: initial;
Dan Beam 2014/10/23 23:56:01 nit: i guess this is OK but I'd say "none" is more
kcarattini 2014/10/24 07:02:42 Done.
}
.col-3 {
@@ -180,7 +188,18 @@ button.primary {
color: rgb(213, 0, 0);
}
+@-webkit-keyframes rotate {
+ from { -webkit-transform: rotate(0);
Dan Beam 2014/10/23 23:56:01 from { ... } to { ... } OR from { ... } to
kcarattini 2014/10/24 07:02:42 Done.
+ }
+ 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;
background: url(../images/placeholder-loader-1x.png) no-repeat;
}

Powered by Google App Engine
This is Rietveld 408576698