1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
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;
}
|