viniBaxter-spa_landing 13.4 → 15.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f238c9a1bbcc10b51e1a5992f2b22689abba323b4c269a6945ec245fa1092b41
4
- data.tar.gz: 13cac1d1e45b2edc2aebe69e39f9fc2077e036ce61c5800dbf67a77b7c40332e
3
+ metadata.gz: bd93edb21da5e1545b65a3214f68425ad3fd58ae50db91fff0c31f6b1e2b1c81
4
+ data.tar.gz: 52b81cb78d4f7a8f9099763a426bf05d622847a130f450bf57cf9b778aac07f4
5
5
  SHA512:
6
- metadata.gz: b878783c057c786fe2b838472b426174abc70188944656a806f2b8a52b8535df4b49462eb900921b3be44a39fe9b568560ff93a3bca140322dbf78f187f5c192
7
- data.tar.gz: 6ab2e1ba6e10cb190c06a80fe8a0b53071325d8d6755c35751e6a6d609b7b72b77e49d48c12d743d3103feba65990e89d5069699362f4ca3c911c9af460acd66
6
+ metadata.gz: 7197af2e9edfa4dd91596533e5bed6e514932d499a3e4b88cecce6f909775f29d3cb92592b1d7ab9f745349e332f5ff2f8c811ca3b782fe9c19b18472ed6dcc5
7
+ data.tar.gz: 6062960c5fe90726207e47329781a5b6776d5935f8083d23745a170c565cfaece7ff8bfedd2451029fcaf8513661efcdc9ca8ee7110403e08518d54b2dfc10e9
@@ -2,7 +2,6 @@
2
2
  // Released under MIT and copyright 2014 Waybury.
3
3
  // https://useiconic.com/open
4
4
 
5
-
6
5
  // Checkboxes and radios
7
6
  //
8
7
  // Base class takes care of all the key behavioral aspects.
@@ -25,24 +24,27 @@
25
24
  left: 0;
26
25
  z-index: -1; // Put the input behind the label so it doesn't overlay text
27
26
  width: $custom-control-indicator-size;
28
- height: ($font-size-base * $line-height-base + $custom-control-indicator-size) / 2;
27
+ height: ($font-size-base * $line-height-base + $custom-control-indicator-size) /
28
+ 2;
29
29
  opacity: 0;
30
30
 
31
31
  &:checked ~ .custom-control-label::before {
32
32
  color: $custom-control-indicator-checked-color;
33
33
  border-color: $custom-control-indicator-checked-border-color;
34
34
  @include gradient-bg($custom-control-indicator-checked-bg);
35
- @include box-shadow($custom-control-indicator-checked-box-shadow);
35
+ // TODO: ERROR ☠️
36
+ // @include box-shadow($custom-control-indicator-checked-box-shadow);
36
37
  }
37
38
 
38
- &:focus ~ .custom-control-label::before {
39
- // the mixin is not used here to make sure there is feedback
40
- @if $enable-shadows {
41
- box-shadow: $input-box-shadow, $input-focus-box-shadow;
42
- } @else {
43
- box-shadow: $custom-control-indicator-focus-box-shadow;
44
- }
45
- }
39
+ // TODO: ERROR ☠️
40
+ // &:focus ~ .custom-control-label::before {
41
+ // // the mixin is not used here to make sure there is feedback
42
+ // @if $enable-shadows {
43
+ // box-shadow: $input-box-shadow, $input-focus-box-shadow;
44
+ // } @else {
45
+ // box-shadow: $custom-control-indicator-focus-box-shadow;
46
+ // }
47
+ // }
46
48
 
47
49
  &:focus:not(:checked) ~ .custom-control-label::before {
48
50
  border-color: $custom-control-indicator-focus-border-color;
@@ -52,7 +54,8 @@
52
54
  color: $custom-control-indicator-active-color;
53
55
  background-color: $custom-control-indicator-active-bg;
54
56
  border-color: $custom-control-indicator-active-border-color;
55
- @include box-shadow($custom-control-indicator-active-box-shadow);
57
+ // TODO: ERROR ☠️
58
+ // @include box-shadow($custom-control-indicator-active-box-shadow);
56
59
  }
57
60
 
58
61
  // Use [disabled] and :disabled to work around https://github.com/twbs/bootstrap/issues/28247
@@ -67,6 +70,7 @@
67
70
  }
68
71
  }
69
72
  }
73
+ // first part end 1st 😇
70
74
 
71
75
  // Custom control indicators
72
76
  //
@@ -82,32 +86,34 @@
82
86
  // Background-color and (when enabled) gradient
83
87
  &::before {
84
88
  position: absolute;
85
- top: ($font-size-base * $line-height-base - $custom-control-indicator-size) / 2;
89
+ top: ($font-size-base * $line-height-base - $custom-control-indicator-size) /
90
+ 2;
86
91
  left: -($custom-control-gutter + $custom-control-indicator-size);
87
92
  display: block;
88
93
  width: $custom-control-indicator-size;
89
94
  height: $custom-control-indicator-size;
90
95
  pointer-events: none;
91
- content: "";
96
+ content: '';
92
97
  background-color: $custom-control-indicator-bg;
93
- border: $custom-control-indicator-border-color solid $custom-control-indicator-border-width;
94
- @include box-shadow($custom-control-indicator-box-shadow);
98
+ border: $custom-control-indicator-border-color solid
99
+ $custom-control-indicator-border-width;
100
+ // @include box-shadow($custom-control-indicator-box-shadow);
95
101
  }
96
102
 
97
103
  // Foreground (icon)
98
104
  &::after {
99
105
  position: absolute;
100
- top: ($font-size-base * $line-height-base - $custom-control-indicator-size) / 2;
106
+ top: ($font-size-base * $line-height-base - $custom-control-indicator-size) /
107
+ 2;
101
108
  left: -($custom-control-gutter + $custom-control-indicator-size);
102
109
  display: block;
103
110
  width: $custom-control-indicator-size;
104
111
  height: $custom-control-indicator-size;
105
- content: "";
112
+ content: '';
106
113
  background: no-repeat 50% / #{$custom-control-indicator-bg-size};
107
114
  }
108
115
  }
109
116
 
110
-
111
117
  // Checkboxes
112
118
  //
113
119
  // Tweak just a few things for checkboxes.
@@ -127,10 +133,12 @@
127
133
  &::before {
128
134
  border-color: $custom-checkbox-indicator-indeterminate-border-color;
129
135
  @include gradient-bg($custom-checkbox-indicator-indeterminate-bg);
130
- @include box-shadow($custom-checkbox-indicator-indeterminate-box-shadow);
136
+ // @include box-shadow($custom-checkbox-indicator-indeterminate-box-shadow);
131
137
  }
132
138
  &::after {
133
- background-image: escape-svg($custom-checkbox-indicator-icon-indeterminate);
139
+ background-image: escape-svg(
140
+ $custom-checkbox-indicator-icon-indeterminate
141
+ );
134
142
  }
135
143
  }
136
144
 
@@ -167,7 +175,6 @@
167
175
  }
168
176
  }
169
177
 
170
-
171
178
  // switches
172
179
  //
173
180
  // Tweak a few things for switches
@@ -185,21 +192,33 @@
185
192
  }
186
193
 
187
194
  &::after {
188
- top: add(($font-size-base * $line-height-base - $custom-control-indicator-size) / 2, $custom-control-indicator-border-width * 2);
189
- left: add(-($custom-switch-width + $custom-control-gutter), $custom-control-indicator-border-width * 2);
195
+ top: add(
196
+ ($font-size-base * $line-height-base - $custom-control-indicator-size) /
197
+ 2,
198
+ $custom-control-indicator-border-width * 2
199
+ );
200
+ left: add(
201
+ -($custom-switch-width + $custom-control-gutter),
202
+ $custom-control-indicator-border-width * 2
203
+ );
190
204
  width: $custom-switch-indicator-size;
191
205
  height: $custom-switch-indicator-size;
192
206
  background-color: $custom-control-indicator-border-color;
193
207
  // stylelint-disable-next-line property-blacklist
194
208
  border-radius: $custom-switch-indicator-border-radius;
195
- @include transition(transform .15s ease-in-out, $custom-forms-transition);
209
+ @include transition(
210
+ transform 0.15s ease-in-out,
211
+ $custom-forms-transition
212
+ );
196
213
  }
197
214
  }
198
215
 
199
216
  .custom-control-input:checked ~ .custom-control-label {
200
217
  &::after {
201
218
  background-color: $custom-control-indicator-bg;
202
- transform: translateX($custom-switch-width - $custom-control-indicator-size);
219
+ transform: translateX(
220
+ $custom-switch-width - $custom-control-indicator-size
221
+ );
203
222
  }
204
223
  }
205
224
 
@@ -210,7 +229,6 @@
210
229
  }
211
230
  }
212
231
 
213
-
214
232
  // Select
215
233
  //
216
234
  // Replaces the browser default select with a custom one, mostly pulled from
@@ -221,7 +239,9 @@
221
239
  display: inline-block;
222
240
  width: 100%;
223
241
  height: $custom-select-height;
224
- padding: $custom-select-padding-y ($custom-select-padding-x + $custom-select-indicator-padding) $custom-select-padding-y $custom-select-padding-x;
242
+ padding: $custom-select-padding-y
243
+ ($custom-select-padding-x + $custom-select-indicator-padding)
244
+ $custom-select-padding-y $custom-select-padding-x;
225
245
  font-family: $custom-select-font-family;
226
246
  @include font-size($custom-select-font-size);
227
247
  font-weight: $custom-select-font-weight;
@@ -231,18 +251,21 @@
231
251
  background: $custom-select-bg $custom-select-background;
232
252
  border: $custom-select-border-width solid $custom-select-border-color;
233
253
  @include border-radius($custom-select-border-radius, 0);
234
- @include box-shadow($custom-select-box-shadow);
254
+ // @include box-shadow($custom-select-box-shadow);
235
255
  appearance: none;
236
256
 
237
257
  &:focus {
238
258
  border-color: $custom-select-focus-border-color;
239
259
  outline: 0;
240
- @if $enable-shadows {
241
- @include box-shadow($custom-select-box-shadow, $custom-select-focus-box-shadow);
242
- } @else {
243
- // Avoid using mixin so we can pass custom focus shadow properly
244
- box-shadow: $custom-select-focus-box-shadow;
245
- }
260
+ // @if $enable-shadows {
261
+ // @include box-shadow(
262
+ // $custom-select-box-shadow,
263
+ // $custom-select-focus-box-shadow
264
+ // );
265
+ // } @else {
266
+ // // Avoid using mixin so we can pass custom focus shadow properly
267
+ // box-shadow: $custom-select-focus-box-shadow;
268
+ // }
246
269
 
247
270
  &::-ms-value {
248
271
  // For visual consistency with other platforms/browsers,
@@ -256,7 +279,7 @@
256
279
  }
257
280
 
258
281
  &[multiple],
259
- &[size]:not([size="1"]) {
282
+ &[size]:not([size='1']) {
260
283
  height: auto;
261
284
  padding-right: $custom-select-padding-x;
262
285
  background-image: none;
@@ -295,7 +318,6 @@
295
318
  @include font-size($custom-select-font-size-lg);
296
319
  }
297
320
 
298
-
299
321
  // File
300
322
  //
301
323
  // Custom file input.
@@ -353,7 +375,7 @@
353
375
  background-color: $custom-file-bg;
354
376
  border: $custom-file-border-width solid $custom-file-border-color;
355
377
  @include border-radius($custom-file-border-radius);
356
- @include box-shadow($custom-file-box-shadow);
378
+ // @include box-shadow($custom-file-box-shadow);
357
379
 
358
380
  &::after {
359
381
  position: absolute;
@@ -366,10 +388,12 @@
366
388
  padding: $custom-file-padding-y $custom-file-padding-x;
367
389
  line-height: $custom-file-line-height;
368
390
  color: $custom-file-button-color;
369
- content: "Browse";
391
+ content: 'Browse';
370
392
  @include gradient-bg($custom-file-button-bg);
371
393
  border-left: inherit;
372
- @include border-radius(0 $custom-file-border-radius $custom-file-border-radius 0);
394
+ @include border-radius(
395
+ 0 $custom-file-border-radius $custom-file-border-radius 0
396
+ );
373
397
  }
374
398
  }
375
399
 
@@ -381,7 +405,10 @@
381
405
 
382
406
  .custom-range {
383
407
  width: 100%;
384
- height: add($custom-range-thumb-height, $custom-range-thumb-focus-box-shadow-width * 2);
408
+ height: add(
409
+ $custom-range-thumb-height,
410
+ $custom-range-thumb-focus-box-shadow-width * 2
411
+ );
385
412
  padding: 0; // Need to reset padding
386
413
  background-color: transparent;
387
414
  appearance: none;
@@ -391,9 +418,15 @@
391
418
 
392
419
  // Pseudo-elements must be split across multiple rulesets to have an effect.
393
420
  // No box-shadow() mixin for focus accessibility.
394
- &::-webkit-slider-thumb { box-shadow: $custom-range-thumb-focus-box-shadow; }
395
- &::-moz-range-thumb { box-shadow: $custom-range-thumb-focus-box-shadow; }
396
- &::-ms-thumb { box-shadow: $custom-range-thumb-focus-box-shadow; }
421
+ &::-webkit-slider-thumb {
422
+ box-shadow: $custom-range-thumb-focus-box-shadow;
423
+ }
424
+ &::-moz-range-thumb {
425
+ box-shadow: $custom-range-thumb-focus-box-shadow;
426
+ }
427
+ &::-ms-thumb {
428
+ box-shadow: $custom-range-thumb-focus-box-shadow;
429
+ }
397
430
  }
398
431
 
399
432
  &::-moz-focus-outer {
@@ -407,7 +440,7 @@
407
440
  @include gradient-bg($custom-range-thumb-bg);
408
441
  border: $custom-range-thumb-border;
409
442
  @include border-radius($custom-range-thumb-border-radius);
410
- @include box-shadow($custom-range-thumb-box-shadow);
443
+ // @include box-shadow($custom-range-thumb-box-shadow);
411
444
  @include transition($custom-forms-transition);
412
445
  appearance: none;
413
446
 
@@ -424,7 +457,7 @@
424
457
  background-color: $custom-range-track-bg;
425
458
  border-color: transparent;
426
459
  @include border-radius($custom-range-track-border-radius);
427
- @include box-shadow($custom-range-track-box-shadow);
460
+ // @include box-shadow($custom-range-track-box-shadow);
428
461
  }
429
462
 
430
463
  &::-moz-range-thumb {
@@ -433,7 +466,7 @@
433
466
  @include gradient-bg($custom-range-thumb-bg);
434
467
  border: $custom-range-thumb-border;
435
468
  @include border-radius($custom-range-thumb-border-radius);
436
- @include box-shadow($custom-range-thumb-box-shadow);
469
+ // @include box-shadow($custom-range-thumb-box-shadow);
437
470
  @include transition($custom-forms-transition);
438
471
  appearance: none;
439
472
 
@@ -450,7 +483,7 @@
450
483
  background-color: $custom-range-track-bg;
451
484
  border-color: transparent; // Firefox specific?
452
485
  @include border-radius($custom-range-track-border-radius);
453
- @include box-shadow($custom-range-track-box-shadow);
486
+ // @include box-shadow($custom-range-track-box-shadow);
454
487
  }
455
488
 
456
489
  &::-ms-thumb {
@@ -458,11 +491,11 @@
458
491
  height: $custom-range-thumb-height;
459
492
  margin-top: 0; // Edge specific
460
493
  margin-right: $custom-range-thumb-focus-box-shadow-width; // Workaround that overflowed box-shadow is hidden.
461
- margin-left: $custom-range-thumb-focus-box-shadow-width; // Workaround that overflowed box-shadow is hidden.
494
+ margin-left: $custom-range-thumb-focus-box-shadow-width; // Workaround that overflowed box-shadow is hidden.
462
495
  @include gradient-bg($custom-range-thumb-bg);
463
496
  border: $custom-range-thumb-border;
464
497
  @include border-radius($custom-range-thumb-border-radius);
465
- @include box-shadow($custom-range-thumb-box-shadow);
498
+ // @include box-shadow($custom-range-thumb-box-shadow);
466
499
  @include transition($custom-forms-transition);
467
500
  appearance: none;
468
501
 
@@ -479,7 +512,7 @@
479
512
  background-color: transparent;
480
513
  border-color: transparent;
481
514
  border-width: $custom-range-thumb-height / 2;
482
- @include box-shadow($custom-range-track-box-shadow);
515
+ // @include box-shadow($custom-range-track-box-shadow);
483
516
  }
484
517
 
485
518
  &::-ms-fill-lower {
@@ -48,6 +48,10 @@
48
48
  padding: 0px !important;
49
49
  }
50
50
  }
51
+
52
+ .container-full-xl {
53
+ max-width: 1300px !important;
54
+ }
51
55
  }
52
56
 
53
57
  // Row
@@ -1,11 +1,11 @@
1
1
  // bootstrap
2
- // @import 'bootstrap/bootstrap';
2
+ @import 'bootstrap/bootstrap';
3
3
 
4
4
  // Theme functions
5
- // @import 'spa_landing/theme/functions';
5
+ @import 'spa_landing/theme/functions';
6
6
 
7
- // // Theme core
8
- // @import 'spa_landing/theme/theme-basic-nav';
7
+ // Theme core
8
+ @import 'spa_landing/theme/theme-basic-nav';
9
9
 
10
- // // commun for both gems
11
- // @import 'spa_landing/theme/both_gems';
10
+ // commun for both gems
11
+ @import 'spa_landing/theme/both_gems';
@@ -1,11 +1,11 @@
1
1
  // // bootstrap
2
- // @import 'bootstrap/bootstrap';
2
+ @import 'bootstrap/bootstrap';
3
3
 
4
- // // Theme functions
5
- // @import 'spa_landing/theme/functions';
4
+ // Theme functions
5
+ @import 'spa_landing/theme/functions';
6
6
 
7
- // // // Theme core
8
- // @import 'spa_landing/theme/theme';
7
+ // // Theme core
8
+ @import 'spa_landing/theme/theme';
9
9
 
10
- // // // commun for both gems
11
- // @import 'spa_landing/theme/both_gems';
10
+ // // commun for both gems
11
+ @import 'spa_landing/theme/both_gems';
@@ -3,7 +3,6 @@
3
3
  // Extended from Bootstrap
4
4
  //
5
5
 
6
-
7
6
  // Soft variants
8
7
 
9
8
  @each $color, $value in $theme-colors {
@@ -11,12 +10,81 @@
11
10
  @include badge-variant-soft($value, $badge-soft-bg-opacity);
12
11
  }
13
12
  }
13
+ @each $color, $value in $theme-colors {
14
+ .badge-outline-#{$color}-soft {
15
+ @include badge-variant-outline-soft($value, $badge-soft-bg-opacity);
16
+ color: $value;
17
+ cursor: pointer;
18
+ &.active {
19
+ @include badge-variant-outline-soft-active(
20
+ $value,
21
+ $badge-soft-bg-opacity
22
+ );
23
+ &:hover {
24
+ color: $dark;
25
+ }
26
+ }
27
+ }
28
+ }
29
+
30
+ .algolia__refine_tabs {
31
+ position: relative;
32
+ font-weight: 400 !important;
33
+ font-size: 14px !important;
34
+ line-height: 18px !important;
35
+ cursor: pointer !important;
36
+ text-align: center !important;
37
+ border: 1px solid;
38
+ background-color: #ffffff !important;
39
+ outline: none !important;
40
+ padding: 0px !important;
41
+ border-color: $gray-500 !important;
42
+ border-radius: 30px !important;
43
+ color: $black !important;
44
+ position: relative !important;
45
+ padding-top: 8px !important;
46
+ padding-bottom: 8px !important;
47
+ padding-left: 16px !important;
48
+ padding-right: 16px !important;
49
+
50
+ &:hover {
51
+ border-color: $dark !important;
52
+ }
53
+
54
+ &.refined:before {
55
+ background-image: url('https://d134ahucujhb7v.cloudfront.net/packs/media/images/icons/checkmark-wht-118c0d77479e48ce5d07126cfeffb503.svg');
56
+ width: 16px !important;
57
+ height: 16px !important;
58
+ background-color: #252525 !important;
59
+ border-radius: 9999px !important;
60
+ position: absolute !important;
61
+ background-repeat: no-repeat !important;
62
+ background-position: 50% !important;
63
+ content: '';
64
+ background-size: 50;
65
+ left: 7px;
66
+ top: 8px;
67
+ }
68
+
69
+ &.active:after {
70
+ content: '' !important;
71
+ width: calc(100% + 2px) !important;
72
+ height: calc(100% + 2px) !important;
73
+ background-color: transparent !important;
74
+ position: absolute !important;
75
+ top: -1px !important;
76
+ left: -1px !important;
77
+ border-color: inherit !important;
78
+ border-style: solid !important;
79
+ border-width: 2px !important;
80
+ border-radius: inherit !important;
81
+ }
82
+ }
14
83
 
15
84
  .badge-gray-700-soft {
16
85
  @include badge-variant-soft($gray-700, $badge-soft-bg-opacity);
17
86
  }
18
87
 
19
-
20
88
  // Color options
21
89
 
22
90
  .badge-gray-600 {
@@ -24,14 +92,12 @@
24
92
  color: $white;
25
93
  }
26
94
 
27
-
28
95
  // Sizing
29
96
 
30
97
  .badge-lg {
31
98
  padding: $badge-padding-y-lg $badge-padding-x-lg;
32
99
  }
33
100
 
34
-
35
101
  // Rounded circle
36
102
 
37
103
  .badge-rounded-circle {
@@ -45,7 +111,6 @@
45
111
  width: 1em;
46
112
  }
47
113
 
48
-
49
114
  &.badge-lg {
50
115
  height: calc(1em + #{$badge-padding-y-lg * 2});
51
116
  padding-left: $badge-padding-y-lg;
@@ -53,17 +118,21 @@
53
118
  }
54
119
  }
55
120
 
56
-
57
121
  // Positioning
58
122
 
59
123
  .badge-float {
60
124
  position: absolute;
61
- z-index: $zindex-dropdown;
125
+ z-index: $zindex-2;
62
126
  }
63
127
 
64
128
  .badge-float-outside {
65
- top: -.5rem;
66
- right: -.5rem;
129
+ top: -0.5rem;
130
+ right: -0.5rem;
131
+ }
132
+
133
+ .badge-float-inside-close {
134
+ top: 0.5rem;
135
+ right: 0.5rem;
67
136
  }
68
137
 
69
138
  .badge-float-inside {
@@ -71,7 +140,6 @@
71
140
  right: 1rem;
72
141
  }
73
142
 
74
-
75
143
  // Active
76
144
 
77
145
  .badge-white-soft.active {