sail 3.3.0 → 3.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,529 @@
1
+ @-webkit-keyframes fadeIn {
2
+ from { opacity: 0; }
3
+ to { opacity: 1; }
4
+ }
5
+
6
+ @keyframes fadeIn {
7
+ from { opacity: 0; }
8
+ to { opacity: 1; }
9
+ }
10
+
11
+ #settings-dashboard {
12
+ max-height: 100vh;
13
+ color: var(--main-black);
14
+ }
15
+
16
+ #settings-dashboard #settings-container {
17
+ margin-top: 1rem;
18
+ text-align: center;
19
+ }
20
+
21
+ #settings-dashboard .card {
22
+ min-height: 230px;
23
+ background-color: white;
24
+ margin: 1rem .75rem;
25
+ display: inline-block;
26
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
27
+ padding: 10px;
28
+ z-index: 2;
29
+ width: 90%;
30
+ -webkit-box-sizing: border-box;
31
+ -moz-box-sizing: border-box;
32
+ box-sizing: border-box;
33
+ -webkit-border-radius: 5px;
34
+ -moz-border-radius: 5px;
35
+ border-radius: 5px;
36
+ }
37
+
38
+ #settings-dashboard .card h3 {
39
+ margin-left: 25px;
40
+ }
41
+
42
+ #settings-dashboard .card .relevancy-score {
43
+ float: right;
44
+ color: var(--dark-aluminium);
45
+ }
46
+
47
+ @media (min-width: 768px) {
48
+ #settings-dashboard .card {
49
+ width: 44%;
50
+ }
51
+ }
52
+
53
+ @media (min-width: 1200px) {
54
+ #settings-dashboard .card {
55
+ width: 21%;
56
+ }
57
+ }
58
+
59
+ #settings-dashboard .card .card-body-container {
60
+ display: table;
61
+ width: 100%;
62
+ }
63
+
64
+ #settings-dashboard .card .card-body {
65
+ height: 80px;
66
+ width: 100%;
67
+ display: table-cell;
68
+ vertical-align: bottom;
69
+ }
70
+
71
+ #settings-dashboard .card .tag {
72
+ -webkit-border-radius: 5px;
73
+ -moz-border-radius: 5px;
74
+ border-radius: 5px;
75
+ padding: 10px;
76
+ color: var(--main-black);
77
+ font-size: 14px;
78
+ margin-left: 5px;
79
+ text-decoration: none;
80
+ font-weight: bold;
81
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
82
+ }
83
+
84
+ #settings-dashboard .card .tag.type-label {
85
+ background-color: var(--light-yellow);
86
+ }
87
+
88
+ #settings-dashboard .card .tag.group-label {
89
+ background-color: var(--cerulean);
90
+ }
91
+
92
+ #settings-dashboard .card .tag.stale-label {
93
+ background-color: var(--bright-red);
94
+ }
95
+
96
+ #settings-dashboard .card .setting-description {
97
+ clear: both;
98
+ padding: 25px 15px 15px 15px;
99
+ text-overflow: ellipsis;
100
+ white-space: nowrap;
101
+ overflow: hidden;
102
+ -webkit-animation: fadeIn 0.5s;
103
+ animation: fadeIn 0.5s;
104
+ color: var(--darker-aluminium);
105
+ }
106
+
107
+ @media (max-width: 413px) {
108
+ #settings-dashboard .card .tag.stale-label {
109
+ position: relative;
110
+ top: 8px;
111
+ }
112
+ }
113
+
114
+ #settings-dashboard .card .label-container {
115
+ float: right;
116
+ margin-top: 5px;
117
+ }
118
+
119
+ #settings-dashboard .card .value-input {
120
+ width: 98%;
121
+ margin-bottom: 10px;
122
+ font-size: 22px;
123
+ text-align: center;
124
+ border: none;
125
+ border-bottom: 2px solid var(--aluminium);
126
+ -webkit-border-radius: 0;
127
+ -moz-border-radius: 0;
128
+ border-radius: 0;
129
+ padding: 0;
130
+ -webkit-transition : border .25s ease-in;
131
+ -moz-transition : border .25s ease-in;
132
+ -o-transition : border .25s ease-in;
133
+ transition : border .25s ease-in;
134
+ outline: none;
135
+ }
136
+
137
+ #settings-dashboard .card .value-input:focus,
138
+ #settings-dashboard .card .value-input:hover {
139
+ border-color: var(--tangerine);
140
+ outline: none;
141
+ }
142
+
143
+ #settings-dashboard .card .date-picker {
144
+ position: relative;
145
+ bottom: 10px;
146
+ border: none;
147
+ border-bottom: 2px solid var(--aluminium);
148
+ -webkit-border-radius: 0;
149
+ -moz-border-radius: 0;
150
+ border-radius: 0;
151
+ width: 100%;
152
+ text-align: center;
153
+ font-size: 22px;
154
+ padding: 0;
155
+ -webkit-transition : border .25s ease-in;
156
+ -moz-transition : border .25s ease-in;
157
+ -o-transition : border .25s ease-in;
158
+ transition : border .25s ease-in;
159
+ outline: none;
160
+ }
161
+
162
+ #settings-dashboard .card .date-picker:focus,
163
+ #settings-dashboard .card .date-picker:hover {
164
+ border-color: var(--tangerine);
165
+ outline: none;
166
+ }
167
+
168
+ #settings-dashboard .card .value-slider {
169
+ -webkit-appearance: none;
170
+ width: 100%;
171
+ height: 15px;
172
+ border-radius: 5px;
173
+ background: #d3d3d3;
174
+ outline: none;
175
+ opacity: 0.7;
176
+ -webkit-transition: .2s;
177
+ transition: opacity .2s;
178
+ margin: 0 0 10px 0;
179
+ }
180
+
181
+ #settings-dashboard .card .value-slider::-webkit-slider-thumb {
182
+ -webkit-appearance: none;
183
+ appearance: none;
184
+ width: 25px;
185
+ height: 25px;
186
+ border-radius: 50%;
187
+ background: var(--tangerine);
188
+ cursor: pointer;
189
+ }
190
+
191
+ #settings-dashboard .card .value-slider::-moz-range-thumb {
192
+ width: 25px;
193
+ height: 25px;
194
+ border-radius: 50%;
195
+ background: var(--tangerine);
196
+ cursor: pointer;
197
+ }
198
+
199
+ #settings-dashboard .card .btn-value-submit {
200
+ width: 100%;
201
+ height: 35px;
202
+ }
203
+
204
+ #settings-dashboard .card .switch {
205
+ position: relative;
206
+ display: inline-block;
207
+ width: 60px;
208
+ height: 34px;
209
+ margin-bottom: 10px;
210
+ float: right;
211
+ }
212
+
213
+ #settings-dashboard .card .switch input {display:none;}
214
+
215
+ #settings-dashboard .card .slider {
216
+ position: absolute;
217
+ cursor: pointer;
218
+ top: 0;
219
+ left: 0;
220
+ right: 0;
221
+ bottom: 0;
222
+ background-color: #ccc;
223
+ -webkit-transition: .4s;
224
+ transition: .4s;
225
+ }
226
+
227
+ #settings-dashboard .card .slider:before {
228
+ position: absolute;
229
+ content: "";
230
+ height: 26px;
231
+ width: 26px;
232
+ left: 4px;
233
+ bottom: 4px;
234
+ background-color: white;
235
+ -webkit-transition: .4s;
236
+ transition: .4s;
237
+ }
238
+
239
+ #settings-dashboard .card input:checked + .slider {
240
+ background-color: var(--tangerine);
241
+ }
242
+
243
+ #settings-dashboard .card input:focus + .slider {
244
+ box-shadow: 0 0 1px var(--tangerine);
245
+ }
246
+
247
+ #settings-dashboard .card input:checked + .slider:before {
248
+ -webkit-transform: translateX(26px);
249
+ -ms-transform: translateX(26px);
250
+ transform: translateX(26px);
251
+ }
252
+
253
+ #settings-dashboard .card .slider.round {
254
+ border-radius: 34px;
255
+ }
256
+
257
+ #settings-dashboard .card .slider.round:before {
258
+ border-radius: 50%;
259
+ }
260
+
261
+ #settings-dashboard .card .refresh-button {
262
+ border: none;
263
+ outline: none;
264
+ float: left;
265
+ background: transparent;
266
+ }
267
+
268
+ @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
269
+ @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
270
+ @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
271
+
272
+ #settings-dashboard .card .refresh-button img {
273
+ height: 30px;
274
+ }
275
+
276
+ #settings-dashboard .card .refresh-button:hover {
277
+ cursor: pointer;
278
+ }
279
+
280
+ #settings-dashboard .card .refresh-button.active img {
281
+ -webkit-animation:spin 1s linear infinite;
282
+ -moz-animation:spin 1s linear infinite;
283
+ animation:spin 1s linear infinite;
284
+ }
285
+
286
+ #settings-dashboard .card.minimal {
287
+ min-height: 50px;
288
+ padding-top: 0;
289
+ }
290
+
291
+ #settings-dashboard .card.minimal label {
292
+ font-size: 22px;
293
+ }
294
+
295
+ .notice {
296
+ display: none;
297
+ clear: both;
298
+ padding: 25px 15px 15px 15px;
299
+ text-overflow: ellipsis;
300
+ white-space: nowrap;
301
+ overflow: hidden;
302
+ font-weight: bolder;
303
+ text-align: center;
304
+ -webkit-animation: fadeIn 0.5s;
305
+ animation: fadeIn 0.5s;
306
+ }
307
+
308
+ .notice.success {
309
+ color: var(--dark-green);
310
+ }
311
+
312
+ .notice.alert {
313
+ color: var(--bright-red);
314
+ }
315
+
316
+ #progress-container {
317
+ text-align: center;
318
+ }
319
+
320
+ #progress-container #search-submit-progress {
321
+ display: none;
322
+ width: 100%;
323
+ -webkit-appearance: none;
324
+ height: 3px;
325
+ position: relative;
326
+ bottom: 22px;
327
+ left: 3px;
328
+ }
329
+
330
+ #progress-container #search-submit-progress::-webkit-progress-bar {
331
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
332
+ background-color: white;
333
+ }
334
+
335
+ #progress-container #search-submit-progress::-webkit-progress-value {
336
+ background-color: var(--cerulean);
337
+ }
338
+
339
+ @media (max-width: 991px) {
340
+ #settings-dashboard #search-container {
341
+ margin-top: 10px;
342
+ }
343
+ }
344
+
345
+ #settings-dashboard #search-container .inner-container {
346
+ width: 90%;
347
+ float: left;
348
+ }
349
+
350
+ @media (min-width: 992px) {
351
+ #settings-dashboard #search-container .inner-container {
352
+ width: 50%;
353
+ }
354
+ }
355
+
356
+ #settings-dashboard #search-container #main-app-link {
357
+ margin: 0 0 0 8px;
358
+ height: 53px;
359
+ }
360
+
361
+ #settings-dashboard #search-container #btn-profiles {
362
+ height: 58px;
363
+ margin: 0 0 0 8px;
364
+ }
365
+
366
+ #settings-dashboard #search-container #sort-menu {
367
+ background: white;
368
+ position: absolute;
369
+ right: 30%;
370
+ top: 165px;
371
+ z-index: 2;
372
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
373
+ -webkit-border-radius: 5px;
374
+ -moz-border-radius: 5px;
375
+ border-radius: 5px;
376
+ -webkit-animation: fadeIn 0.5s;
377
+ animation: fadeIn 0.5s;
378
+ padding: 10px;
379
+ }
380
+
381
+ #settings-dashboard #search-container #sort-menu button {
382
+ outline: none;
383
+ border: none;
384
+ width: 100%;
385
+ font-size: 20px;
386
+ background: transparent;
387
+ padding: 5px;
388
+ -webkit-border-radius: 5px;
389
+ -moz-border-radius: 5px;
390
+ border-radius: 5px;
391
+ }
392
+
393
+ #settings-dashboard #search-container #sort-menu button:hover {
394
+ background-color: var(--tangerine);
395
+ }
396
+
397
+ @media (min-width: 768px) {
398
+ #settings-dashboard #search-container #sort-menu {
399
+ right: 41%;
400
+ }
401
+ }
402
+
403
+ @media (min-width: 1024px) {
404
+ #settings-dashboard #search-container #sort-menu {
405
+ right: 18%;
406
+ }
407
+ }
408
+
409
+ @media (min-width: 1200px) {
410
+ #settings-dashboard #search-container #sort-menu {
411
+ right: 22%;
412
+ }
413
+ }
414
+
415
+ #settings-dashboard #search-container #btn-order {
416
+ margin: 0 0 0 15px;
417
+ height: 58px;
418
+ }
419
+
420
+ #settings-dashboard #search-container .search-button {
421
+ float: left;
422
+ border: 3px solid transparent;
423
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
424
+ -webkit-border-radius: 5px;
425
+ -moz-border-radius: 5px;
426
+ border-radius: 5px;
427
+ -webkit-transition : border .25s ease-in;
428
+ -moz-transition : border .25s ease-in;
429
+ -o-transition : border .25s ease-in;
430
+ transition : border .25s ease-in;
431
+ outline: none;
432
+ background: white;
433
+ }
434
+
435
+ #settings-dashboard #search-container .search-button:focus,
436
+ #settings-dashboard #search-container .search-button:hover {
437
+ border-color: var(--tangerine);
438
+ outline: none;
439
+ }
440
+
441
+ #settings-dashboard #search-container .search-button img {
442
+ height: 100%;
443
+ }
444
+
445
+ @media (max-width: 991px) {
446
+ #settings-dashboard #search-container .search-button {
447
+ position: relative;
448
+ top: 10px;
449
+ left: 33vw;
450
+ }
451
+ }
452
+
453
+ @media (max-width: 767px) {
454
+ #settings-dashboard #search-container .search-button {
455
+ left: 20vw;
456
+ }
457
+ }
458
+
459
+ @media (max-width: 413px) {
460
+ #settings-dashboard #search-container .search-button {
461
+ left: 16vw;
462
+ }
463
+ }
464
+
465
+ #settings-dashboard #search-container #search-form {
466
+ text-align: center;
467
+ }
468
+
469
+ #settings-dashboard #search-container #search-form #query {
470
+ height: 50px;
471
+ width: 100%;
472
+ border: 3px solid transparent;
473
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
474
+ font-size: 18px;
475
+ text-align: center;
476
+ text-overflow: ellipsis;
477
+ -webkit-border-radius: 5px;
478
+ -moz-border-radius: 5px;
479
+ border-radius: 5px;
480
+ -webkit-transition : border .25s ease-in;
481
+ -moz-transition : border .25s ease-in;
482
+ -o-transition : border .25s ease-in;
483
+ transition : border .25s ease-in;
484
+ outline: none;
485
+ }
486
+
487
+ #settings-dashboard #search-container #search-form #query:focus,
488
+ #settings-dashboard #search-container #search-form #query:hover {
489
+ border-color: var(--tangerine);
490
+ outline: none;
491
+ }
492
+
493
+ #settings-dashboard #search-container .offset-container {
494
+ float: left;
495
+ width: 3.5%;
496
+ height: 50px;
497
+ }
498
+
499
+ @media (min-width: 992px) {
500
+ #settings-dashboard #search-container .offset-container {
501
+ width: 25%;
502
+ }
503
+ }
504
+
505
+ .btn-sail, #settings-dashboard .card .btn-value-submit {
506
+ text-align: center;
507
+ font-size: 18px;
508
+ -webkit-border-radius: 5px;
509
+ -moz-border-radius: 5px;
510
+ border-radius: 5px;
511
+ background-color: var(--tangerine);
512
+ border: none;
513
+ outline: none;
514
+ -webkit-transition: background-color 0.5s;
515
+ -moz-transition: background-color 0.5s;
516
+ -ms-transition: background-color 0.5s;
517
+ -o-transition: background-color 0.5s;
518
+ transition: background-color 0.5s;
519
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
520
+ }
521
+
522
+ .btn-sail:active {
523
+ color: var(--main-black);
524
+ opacity: .8;
525
+ }
526
+
527
+ .btn-sail :hover {
528
+ background-color: var(--dark-tangerine);
529
+ }