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

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

Issue 8895023: Options2: Pull the trigger. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DIAF. Created 9 years 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/options2/chromeos/system_options_page.css
diff --git a/chrome/browser/resources/options2/chromeos/system_options_page.css b/chrome/browser/resources/options2/chromeos/system_options_page.css
new file mode 100644
index 0000000000000000000000000000000000000000..d38ebdc331398a79a37a883657a4fd3746971f69
--- /dev/null
+++ b/chrome/browser/resources/options2/chromeos/system_options_page.css
@@ -0,0 +1,167 @@
+.touchpad-sensitivity-more {
+ float: right;
+}
+
+html[dir=rtl] .touchpad-sensitivity-more {
+ float: left;
+}
+
+.option-name {
+ display: inline;
+}
+
+#timezone-value {
+ display: inline-block;
+ vertical-align: baseline;
+}
+
+#touchpad-value,
+#slider-control {
+ display: inline-block;
+ vertical-align: top;
+}
+
+#bluetooth-options-div {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+}
+
+#no-bluetooth-devices-label {
+ -webkit-margin-after: 5px;
+ -webkit-margin-before: 5px;
+ color: gray;
+}
+
+#bluetooth-finder-container,
+#bluetooth-scanning-status {
+ -webkit-box-orient: horizontal;
+ display: -webkit-box;
+ vertical-align: baseline;
+}
+
+#bluetooth-scanning-label,
+#bluetooth-scanning-icon {
+ -webkit-transition: 250ms opacity;
+}
+
+#bluetooth-scanning-label {
+ -webkit-margin-start: 5px;
+ color: gray;
+}
+
+#bluetooth-scanning-icon {
+ -webkit-margin-start: 10px;
+ vertical-align: middle;
+}
+
+#bluetooth-device-list {
+ display: table;
+ width: 100%;
+}
+
+#bluetooth-device-list > * {
+ display: table-row;
+}
+
+#bluetooth-device-list > * > * {
+ border-bottom: 4px solid rgba(255,255,255,1);
+ display: table-cell;
+}
+
+.bluetooth-item > * > button {
+ visibility: hidden;
+ width: 100%;
+}
+
+.bluetooth-item:first-child > * {
+ border-top: 4px solid rgba(255,255,255,1);
+}
+
+.bluetooth-item:hover > * > button,
+.bluetooth-item[connected] > * > button,
+.bluetooth-item[connecting] > * > button {
+ visibility: visible;
+}
+
+.bluetooth-item[connected] {
+ background-color: hsl(214, 91%, 89%);
+ background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.8),
+ rgba(255, 255, 255, 0));
+ border-color: hsl(214, 91%, 65%);
+}
+
+.bluetooth-item[paired] {
+ color: gray;
+}
+
+.bluetooth-item:hover,
+.bluetooth-item[connecting] {
+ background-color: hsl(214, 91%, 97%);
+ border-color: hsl(214, 91%, 65%);
+}
+
+.bluetooth-item-text {
+ -webkit-padding-after: 3px;
+ -webkit-padding-before: 3px;
+ -webkit-padding-end: 5px;
+ -webkit-padding-start: 5px;
+ width: 100%;
+}
+
+.bluetooth-item-text > * > .inline-spinner {
+ -webkit-margin-start: 5px;
+ -webkit-transform: translateY(3px);
+}
+
+.bluetooth-instructions {
+ -webkit-margin-after: 5px;
+ -webkit-margin-before: 5px;
+ display: block;
+ line-height: 120%;
+}
+
+.bluetooth-remote-passkey {
+ -webkit-box-align: baseline;
+ -webkit-box-orient: horizontal;
+ display: -webkit-inline-box;
+ margin-bottom: 5px;
+ margin-top: 5px;
+}
+
+.bluetooth-confirm-passkey {
+ display: inline;
+ font-weight: bold;
+}
+
+.bluetooth-passkey-char {
+ -webkit-margin-end: 3px;
+ -webkit-margin-start: 3px;
+ border: 1px solid black;
+ display: -webkit-box;
+ font-weight: bold;
+ padding: 2px;
+}
+
+.bluetooth-passkey-char:first-child {
+ -webkit-margin-start: 10px;
+}
+
+.bluetooth-passkey-char:last-child {
+ -webkit-margin-end: 10px;
+}
+
+.bluetooth-passkey-char.key-typed {
+ background-color: hsl(214, 91%, 50%);
+ color: white;
+}
+
+.bluetooth-passkey-field {
+ -webkit-margin-start: 10px;
+ width: 100px;
+}
+
+.bluetooth-button-group {
+ -webkit-padding-end: 5px;
+ vertical-align: middle;
+}
+

Powered by Google App Engine
This is Rietveld 408576698