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

Unified Diff: chrome/browser/resources/options/chromeos/system_options_page.css

Issue 8137003: Add display of available bluetooth devices, and mechanism for retrieving the list. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add opacity transition animation for the Bluetooth scanning indicator. Created 9 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/options/chromeos/system_options_page.css
diff --git a/chrome/browser/resources/options/chromeos/system_options_page.css b/chrome/browser/resources/options/chromeos/system_options_page.css
index b2beae83ad771287c641c39f7939cc56a31e8cdf..e348ee8c553f57f57362b6c09ce52bc1a6ac3686 100644
--- a/chrome/browser/resources/options/chromeos/system_options_page.css
+++ b/chrome/browser/resources/options/chromeos/system_options_page.css
@@ -21,7 +21,47 @@ html[dir=rtl] .touchpad-sensitivity-more {
vertical-align: top;
}
-#bluetooth-options-div{
+#bluetooth-options-div {
-webkit-box-orient: vertical;
display: -webkit-box;
}
+
+#bluetooth-finder-container,
+#bluetooth-scanning-status {
+ -webkit-box-orient: horizontal;
+ display: -webkit-box;
+ vertical-align: baseline;
+}
+
+#bluetooth-scanning-label {
+ -webkit-margin-start: 5px;
+ -webkit-transition: 0.25s opacity;
+ color: gray;
+}
+
+#bluetooth-scanning-icon {
+ -webkit-margin-start: 10px;
+ -webkit-transition: 0.25s opacity;
+ background-image: url("loader.gif");
+ height: 24px;
+ margin-top: 3px;
+ width: 24px;
+}
+
+.bluetooth-headset,
+.bluetooth-keyboard,
+.bluetooth-mouse {
+ background-repeat: no-repeat;
+}
+
+.bluetooth-headset {
+ background-image: url("headset.png");
+}
+
+.bluetooth-keyboard {
+ background-image: url("keyboard.png");
+}
+
+.bluetooth-mouse {
+ background-image: url("mouse.png");
+}

Powered by Google App Engine
This is Rietveld 408576698