sail 3.3.0 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,422 +0,0 @@
1
- @import "colors";
2
- @import "shared";
3
-
4
- #settings-dashboard {
5
- max-height: 100vh;
6
- color: $main_black;
7
-
8
- #settings-container {
9
- margin-top: 1rem;
10
- text-align: center;
11
- }
12
-
13
- .card {
14
- min-height: 230px;
15
- background-color: white;
16
- margin: 1rem .75rem;
17
- display: inline-block;
18
- box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
19
- padding: 10px;
20
- z-index: 2;
21
- width: 90%;
22
- -webkit-box-sizing: border-box;
23
- -moz-box-sizing: border-box;
24
- box-sizing: border-box;
25
- @extend .rounded;
26
-
27
- @media (min-width: 768px) { width: 44%; }
28
- @media (min-width: 1200px) { width: 21%; }
29
-
30
- h3 {
31
- margin-left: 25px;
32
-
33
- .relevancy-score {
34
- float: right;
35
- color: darken($aluminium, 30%);
36
- }
37
- }
38
-
39
- .card-body-container {
40
- display: table;
41
- width: 100%;
42
- }
43
-
44
- .card-body {
45
- height: 80px;
46
- width: 100%;
47
- display: table-cell;
48
- vertical-align: bottom;
49
- }
50
-
51
- .tag {
52
- @extend .rounded;
53
- padding: 10px;
54
- color: $main_black;
55
- font-size: 14px;
56
- margin-left: 5px;
57
- text-decoration: none;
58
- font-weight: bold;
59
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
60
-
61
- &.type-label {
62
- background-color: $light_yellow;
63
- }
64
-
65
- &.group-label {
66
- background-color: $cerulean;
67
- }
68
-
69
- &.stale-label {
70
- background-color: $bright_red;
71
-
72
- @media (max-width: 413px) {
73
- position: relative;
74
- top: 8px;
75
- }
76
- }
77
- }
78
-
79
- .label-container {
80
- float: right;
81
- margin-top: 5px;
82
- }
83
-
84
- .setting-description {
85
- clear: both;
86
- padding: 25px 15px 15px 15px;
87
- text-overflow: ellipsis;
88
- white-space: nowrap;
89
- overflow: hidden;
90
- @extend .fade-in;
91
- color: darken($aluminium, 45%);
92
- }
93
-
94
- .value-input {
95
- width: 98%;
96
- margin-bottom: 10px;
97
- font-size: 22px;
98
- text-align: center;
99
- border: none;
100
- border-bottom: 2px solid $aluminium;
101
- -webkit-border-radius: 0;
102
- -moz-border-radius: 0;
103
- border-radius: 0;
104
- padding: 0;
105
- @extend .border-transition;
106
- }
107
-
108
- .date-picker {
109
- position: relative;
110
- bottom: 10px;
111
- border: none;
112
- border-bottom: 2px solid $aluminium;
113
- -webkit-border-radius: 0;
114
- -moz-border-radius: 0;
115
- border-radius: 0;
116
- width: 100%;
117
- text-align: center;
118
- font-size: 22px;
119
- padding: 0;
120
- @extend .border-transition;
121
- }
122
-
123
- .value-slider {
124
- -webkit-appearance: none;
125
- width: 100%;
126
- height: 15px;
127
- border-radius: 5px;
128
- background: #d3d3d3;
129
- outline: none;
130
- opacity: 0.7;
131
- -webkit-transition: .2s;
132
- transition: opacity .2s;
133
- margin: 0 0 10px 0;
134
-
135
- &::-webkit-slider-thumb {
136
- -webkit-appearance: none;
137
- appearance: none;
138
- width: 25px;
139
- height: 25px;
140
- border-radius: 50%;
141
- background: $tangerine;
142
- cursor: pointer;
143
- }
144
-
145
- &::-moz-range-thumb {
146
- width: 25px;
147
- height: 25px;
148
- border-radius: 50%;
149
- background: $tangerine;
150
- cursor: pointer;
151
- }
152
- }
153
-
154
- .btn-value-submit {
155
- @extend .btn-sail;
156
- width: 100%;
157
- height: 35px;
158
- }
159
-
160
- .switch {
161
- position: relative;
162
- display: inline-block;
163
- width: 60px;
164
- height: 34px;
165
- margin-bottom: 10px;
166
- float: right;
167
- }
168
-
169
- .switch input {display:none;}
170
-
171
- .slider {
172
- position: absolute;
173
- cursor: pointer;
174
- top: 0;
175
- left: 0;
176
- right: 0;
177
- bottom: 0;
178
- background-color: #ccc;
179
- -webkit-transition: .4s;
180
- transition: .4s;
181
-
182
- &:before {
183
- position: absolute;
184
- content: "";
185
- height: 26px;
186
- width: 26px;
187
- left: 4px;
188
- bottom: 4px;
189
- background-color: white;
190
- -webkit-transition: .4s;
191
- transition: .4s;
192
- }
193
- }
194
-
195
- input:checked + .slider {
196
- background-color: $tangerine;
197
- }
198
-
199
- input:focus + .slider {
200
- box-shadow: 0 0 1px $tangerine;
201
- }
202
-
203
- input:checked + .slider:before {
204
- -webkit-transform: translateX(26px);
205
- -ms-transform: translateX(26px);
206
- transform: translateX(26px);
207
- }
208
-
209
- .slider.round {
210
- border-radius: 34px;
211
- }
212
-
213
- .slider.round:before {
214
- border-radius: 50%;
215
- }
216
-
217
- .refresh-button {
218
- border: none;
219
- outline: none;
220
- float: left;
221
- background: transparent;
222
-
223
- img {
224
- height: 30px;
225
- }
226
-
227
- &:hover {
228
- cursor: pointer;
229
- }
230
-
231
- &.active {
232
- img {
233
- -webkit-animation:spin 1s linear infinite;
234
- -moz-animation:spin 1s linear infinite;
235
- animation:spin 1s linear infinite;
236
- }
237
- }
238
-
239
- @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
240
- @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
241
- @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
242
- }
243
-
244
- &.minimal {
245
- min-height: 50px;
246
- padding-top: 0;
247
-
248
- label {
249
- font-size: 22px;
250
- }
251
- }
252
- }
253
-
254
- #search-container {
255
- @media (max-width: 991px) { margin-top: 10px; }
256
-
257
- #search-form {
258
- text-align: center;
259
-
260
- #query {
261
- height: 50px;
262
- width: 100%;
263
- border: 3px solid transparent;
264
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
265
- font-size: 18px;
266
- text-align: center;
267
- text-overflow: ellipsis;
268
- @extend .rounded;
269
- @extend .border-transition;
270
- }
271
- }
272
-
273
- .offset-container {
274
- float: left;
275
- width: 3.5%;
276
- height: 50px;
277
-
278
- @media (min-width: 992px) { width: 25%; }
279
- }
280
-
281
- .inner-container {
282
- width: 90%;
283
- float: left;
284
-
285
- @media (min-width: 992px) { width: 50%; }
286
- }
287
-
288
- .search-button {
289
- float: left;
290
- border: 3px solid transparent;
291
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
292
- @extend .rounded;
293
- @extend .border-transition;
294
- background: white;
295
-
296
- img {
297
- height: 100%;
298
- }
299
-
300
- @media (max-width: 991px) {
301
- position: relative;
302
- top: 10px;
303
- left: 33vw;
304
- }
305
-
306
- @media (max-width: 767px) { left: 20vw; }
307
- @media (max-width: 413px) { left: 16vw; }
308
- }
309
-
310
- #btn-order {
311
- margin: 0 0 0 15px;
312
- height: 58px;
313
- }
314
-
315
- #sort-menu {
316
- background: white;
317
- position: absolute;
318
- right: 30%;
319
- top: 165px;
320
- z-index: 2;
321
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
322
- @extend .rounded;
323
- @extend .fade-in;
324
- padding: 10px;
325
-
326
- @media (min-width: 768px) { right: 41%; }
327
- @media (min-width: 1024px) { right: 18%; }
328
- @media (min-width: 1200px) { right: 22%; }
329
-
330
- button {
331
- outline: none;
332
- border: none;
333
- width: 100%;
334
- font-size: 20px;
335
- background: transparent;
336
- padding: 5px;
337
- @extend .rounded;
338
-
339
- &:hover {
340
- background-color: $tangerine;
341
- }
342
- }
343
- }
344
-
345
- #main-app-link {
346
- margin: 0 0 0 8px;
347
- height: 53px;
348
- }
349
-
350
- #btn-profiles {
351
- height: 58px;
352
- margin: 0 0 0 8px;
353
- }
354
- }
355
-
356
- .notice {
357
- display: none;
358
- clear: both;
359
- padding: 25px 15px 15px 15px;
360
- text-overflow: ellipsis;
361
- white-space: nowrap;
362
- overflow: hidden;
363
- font-weight: bolder;
364
- text-align: center;
365
- @extend .fade-in;
366
-
367
- &.success {
368
- color: $dark_green;
369
- }
370
-
371
- &.alert {
372
- color: $bright_red;
373
- }
374
- }
375
-
376
- #progress-container {
377
- text-align: center;
378
-
379
- #search-submit-progress {
380
- display: none;
381
- width: 100%;
382
- -webkit-appearance: none;
383
- height: 3px;
384
- position: relative;
385
- bottom: 22px;
386
- left: 3px;
387
-
388
- &::-webkit-progress-bar {
389
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
390
- background-color: white;
391
- }
392
-
393
- &::-webkit-progress-value {
394
- background-color: $cerulean;
395
- }
396
- }
397
- }
398
- }
399
-
400
- .btn-sail {
401
- text-align: center;
402
- font-size: 18px;
403
- @extend .rounded;
404
- background-color: $tangerine;
405
- border: none;
406
- outline: none;
407
- -webkit-transition: background-color 0.5s;
408
- -moz-transition: background-color 0.5s;
409
- -ms-transition: background-color 0.5s;
410
- -o-transition: background-color 0.5s;
411
- transition: background-color 0.5s;
412
- box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
413
-
414
- &:active {
415
- color: $main_black;
416
- opacity: .8;
417
- }
418
-
419
- &:hover {
420
- background-color: darken($tangerine, 20%);
421
- }
422
- }