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

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: Remove addition of animated spinner in favour of reusing an existing throbber class. 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..a8321292dbd6d5214bffe13ab9297127fb6ff359 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,
+#bluetooth-scanning-icon {
+ -webkit-transition: 0.25s opacity;
+}
+
+#bluetooth-scanning-label {
+ -webkit-margin-start: 5px;
+ color: gray;
+}
+
+#bluetooth-scanning-icon {
+ -webkit-margin-start: 10px;
+ vertical-align: middle;
+}
+
+.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");
+}
« no previous file with comments | « chrome/browser/resources/options/chromeos/system_options.js ('k') | chrome/browser/resources/options/options_bundle.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698