@@ -13,6 +13,10 @@ body {
13
13
background-repeat : no-repeat;
14
14
}
15
15
16
+ /*---------------*/
17
+ /* Settings Pane */
18
+ /*---------------*/
19
+
16
20
.tab-selected {
17
21
color : # 000 ;
18
22
padding-bottom : 5px ;
@@ -105,15 +109,23 @@ body {
105
109
outline : none;
106
110
}
107
111
112
+ /*----------------*/
113
+ /* Browse Buttons */
114
+ /*--------------- */
115
+
108
116
.button-label {
109
117
position : absolute;
110
118
text-align : center;
111
- left : 325 px ;
119
+ left : 323 px ;
112
120
width : 160px ;
113
- font-family : Baloo Bhaina;
121
+ font-family : Baloo Bhaina, sans-serif ;
114
122
font-size : 20px ;
115
123
}
116
124
125
+ .button-label-small {
126
+ font-size : 14px ;
127
+ }
128
+
117
129
.button {
118
130
width : 150px ;
119
131
border : none;
@@ -133,21 +145,23 @@ body {
133
145
box-shadow : 0 4px 8px 0 rgba (0 , 0 , 0 , 0.2 ), 0 6px 20px 0 rgba (0 , 0 , 0 , 0.19 );
134
146
}
135
147
136
- .button-blue {
148
+ .button-open {
137
149
background-color : # 4472c4 ;
138
150
}
139
151
140
- .button-blue : hover {
152
+ .button-open : hover {
141
153
background-color : # 335b9c ;
142
154
}
143
155
144
- .button-green {
145
- background-color : # 4caf50 ; /* Green */
156
+ .button .tooltip {
157
+ width : 130px ;
158
+ /* Vertically position the tip in relation to the button*/
159
+ top : 12px ;
146
160
}
147
161
148
- . button-green : hover {
149
- background-color : # 339037 ; /* Green */
150
- }
162
+ /*-----------------*/
163
+ /* Settings button */
164
+ /*-----------------*/
151
165
152
166
.settings {
153
167
width : 40px ;
@@ -163,6 +177,14 @@ body {
163
177
border : 1px solid # 117022 ;
164
178
}
165
179
180
+ .settings-active : hover {
181
+ background-color : # 339037 ; /* Green */
182
+ }
183
+
184
+ /*-------------------*/
185
+ /* Connection status */
186
+ /*-------------------*/
187
+
166
188
.status {
167
189
word-break : break-all;
168
190
padding : 17px 16px ;
@@ -178,11 +200,17 @@ body {
178
200
.status-clear {
179
201
height : 38px ;
180
202
width : 114px ;
181
- background : none; /* Green */
203
+ background : none;
182
204
color : # ccc ;
183
205
border : 2px solid # ddd ;
184
206
}
185
207
208
+ .status-clear .tooltip {
209
+ width : 200px ;
210
+ /* Vertically position the tip in relation to the button*/
211
+ top : -7px ;
212
+ }
213
+
186
214
.status-green {
187
215
height : 31px ;
188
216
width : 118px ;
@@ -192,44 +220,52 @@ body {
192
220
border : none;
193
221
}
194
222
195
- .status-clear .statustiptext {
223
+ /*----------*/
224
+ /* Tool Tip */
225
+ /*----------*/
226
+
227
+ .tooltip {
196
228
visibility : hidden;
197
- width : 200 px ;
198
- background-color : # 4472c4 ;
229
+ width : 100 px ; /* Default size */
230
+ background-color : # 117022 ;
199
231
color : # fff ;
200
232
text-align : center;
201
233
border-radius : 6px ;
202
234
padding-top : 3px ;
203
235
padding-bottom : 5px ;
204
236
205
- /* Position the tip (left of status )*/
237
+ /* Position the tip (left of button )*/
206
238
position : absolute;
207
239
z-index : 1 ;
208
- top : -7 px ;
240
+ top : 10 px ; /* Default position */
209
241
right : 106% ;
210
242
211
243
/* Fade in tip - takes 4/10 second to go from 0% to 100% opacity */
212
244
opacity : 0.0 ;
213
245
transition : opacity 0.4s ;
214
246
}
215
247
216
- .status-clear . statustiptext ::after {
248
+ .tooltip ::after {
217
249
content : "" ;
218
250
position : absolute;
219
251
top : 50% ;
220
252
left : 100% ;
221
253
margin-top : -5px ;
222
254
border-width : 5px ;
223
255
border-style : solid;
224
- border-color : transparent transparent transparent # 4472c4 ;
256
+ border-color : transparent transparent transparent # 117022 ;
225
257
}
226
258
227
- . status-clear : hover . statustiptext {
259
+ * : hover > . tooltip {
228
260
visibility : visible;
229
261
opacity : 1.0 ;
230
262
box-shadow : 0 4px 8px 0 rgba (0 , 0 , 0 , 0.2 ), 0 6px 20px 0 rgba (0 , 0 , 0 , 0.19 );
231
263
}
232
264
265
+ /*-------------*/
266
+ /* App version */
267
+ /*-------------*/
268
+
233
269
.version {
234
270
color : # 999999 ;
235
271
font-size : 11px ;
0 commit comments