@qhealth-design-system/core 1.16.3 → 1.16.5
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.
- package/CHANGELOG.md +4 -0
- package/package.json +1 -10
- package/src/components/_global/css/admin/component.scss +19 -23
- package/src/components/_global/css/tags/component.scss +0 -4
- package/src/components/_global/html/scripts.html +9 -16
- package/src/components/_global/js/select_boxes/global.js +36 -0
- package/src/components/_template/html/component-page.html +25 -31
- package/src/components/a-z_listing/js/global.js +60 -48
- package/src/components/card_no_action/css/component.scss +128 -158
- package/src/components/prefooter/css/component.scss +62 -0
- package/src/components/prefooter/js/manifest.json +9 -0
- package/src/components/promo_panel/js/global.js +19 -18
- package/src/data/current.json +3 -15
- package/src/html/component-a-z_listing.html +13 -41
- package/src/html/component-abstract.html +536 -40
- package/src/html/component-accordion.html +537 -41
- package/src/html/component-banner.html +537 -40
- package/src/html/component-banner_advanced.html +14 -41
- package/src/html/component-banner_basic.html +13 -40
- package/src/html/component-banner_intermediate.html +14 -41
- package/src/html/component-basic_search.html +10 -26
- package/src/html/component-body.html +541 -52
- package/src/html/component-breadcrumbs.html +538 -43
- package/src/html/component-btn.html +471 -69
- package/src/html/component-callout.html +536 -40
- package/src/html/component-card_feature.html +691 -308
- package/src/html/component-card_multi_action.html +651 -217
- package/src/html/component-card_no_action.html +163 -289
- package/src/html/component-card_single_action.html +1251 -324
- package/src/html/component-code.html +13 -40
- package/src/html/component-file_upload.html +13 -41
- package/src/html/component-footer.html +537 -41
- package/src/html/component-forms.html +4 -5
- package/src/html/component-global-elements.html +720 -152
- package/src/html/component-global_alert.html +536 -41
- package/src/html/component-header.html +537 -42
- package/src/html/component-horizontal_rule.html +459 -65
- package/src/html/component-in_page_navigation.html +544 -48
- package/src/html/component-internal_navigation.html +537 -41
- package/src/html/component-left_hand_navigation.html +13 -41
- package/src/html/component-loading_spinner.html +13 -42
- package/src/html/component-main_navigation.html +537 -41
- package/src/html/component-mega_main_navigation.html +537 -42
- package/src/html/component-multi_column.html +536 -40
- package/src/html/component-overflow_menu.html +12 -35
- package/src/html/component-page_alert.html +536 -40
- package/src/html/component-page_footer_info.html +583 -0
- package/src/html/component-pagination.html +459 -65
- package/src/html/component-promo_panel.html +13 -43
- package/src/html/component-tab.html +13 -41
- package/src/html/component-tag_list.html +495 -77
- package/src/html/component-toggle_tip.html +2 -3
- package/src/html/component-tool_tip.html +2 -3
- package/src/html/component-video_player.html +13 -41
- package/src/html/components.html +306 -88
- package/src/html/home.html +1807 -628
- package/src/html/index.html +9 -22
- package/src/html/inner-with-nav.html +551 -137
- package/src/html/inner.html +570 -59
- package/src/index.js +1 -13
- package/src/styles/global.scss +4 -10
- package/src/components/_global/css/slick/component.scss +0 -25
- package/src/components/_global/js/forms/global.js +0 -335
- package/src/components/_global/js/slick/global.js +0 -153
- package/src/components/_global/js/user_location/global.js +0 -116
- package/src/components/data_table/css/component.scss +0 -832
- package/src/components/data_table/html/component.hbs +0 -20
- package/src/components/data_table/js/global.js +0 -387
- package/src/components/data_table/js/manifest.json +0 -112
- package/src/components/updated_date/css/component.scss +0 -24
- package/src/components/updated_date/js/manifest.json +0 -9
- package/src/components/widgets/css/component.scss +0 -130
- package/src/components/widgets/html/component.hbs +0 -8
- package/src/components/widgets/html/default.html +0 -3
- package/src/components/widgets/js/current.json +0 -471
- package/src/components/widgets/js/manifest.json +0 -9
- package/src/components/widgets/js/site.json +0 -350
- package/src/externals/dsComponentLoader.js +0 -410
- package/src/externals/fb-typeahead.bundle.min.js +0 -6
- package/src/externals/funnelback.autocompletion-2.6.0.js +0 -678
- package/src/html/component-data_table.html +0 -85
- package/src/html/component-updated_date.html +0 -88
- package/src/html/component-widgets.html +0 -90
- /package/src/components/{updated_date → prefooter}/html/component.hbs +0 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
flex-direction: column;
|
|
8
8
|
width: 100%;
|
|
9
9
|
border-radius: $QLD-border-radius-sm;
|
|
10
|
-
|
|
10
|
+
border: $QLD-border-width-thin solid var(--QLD-color-light__border--alt);
|
|
11
11
|
position: relative;
|
|
12
12
|
color: var(--QLD-color-light__text);
|
|
13
13
|
background: $QLD-color-neutral--white;
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
& &__content{
|
|
31
|
+
& &__content {
|
|
32
32
|
word-break: break-word;
|
|
33
33
|
}
|
|
34
34
|
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
color: var(--QLD-color-light__heading);
|
|
37
37
|
@include QLD-space(font-size, 1.25unit);
|
|
38
38
|
line-height: 1.4;
|
|
39
|
-
@include QLD-space(margin, 0unit);
|
|
39
|
+
@include QLD-space(margin, 0unit);
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
& &__inner &__description{
|
|
42
|
+
& &__inner &__description {
|
|
43
43
|
@include QLD-fontgrid(xs);
|
|
44
|
-
@include QLD-space(margin-top, .75unit);
|
|
44
|
+
@include QLD-space(margin-top, 0.75unit);
|
|
45
45
|
|
|
46
46
|
@include QLD-media(md) {
|
|
47
47
|
@include QLD-fontgrid(sm);
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
.qld__card__image-tag{
|
|
90
|
+
.qld__card__image-tag {
|
|
91
91
|
position: absolute;
|
|
92
92
|
left: 0;
|
|
93
93
|
bottom: 0;
|
|
@@ -99,30 +99,30 @@
|
|
|
99
99
|
overflow: hidden;
|
|
100
100
|
|
|
101
101
|
&--title,
|
|
102
|
-
&--length{
|
|
102
|
+
&--length {
|
|
103
103
|
background-color: var(--QLD-color-light__action--primary);
|
|
104
|
-
@include QLD-space(padding, .625unit);
|
|
104
|
+
@include QLD-space(padding, 0.625unit);
|
|
105
105
|
|
|
106
|
-
i{
|
|
106
|
+
i {
|
|
107
107
|
@include QLD-space(font-size, 1.25unit);
|
|
108
|
-
@include QLD-space(margin-right, .375unit);
|
|
108
|
+
@include QLD-space(margin-right, 0.375unit);
|
|
109
109
|
vertical-align: text-top;
|
|
110
|
-
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
}
|
|
114
113
|
|
|
115
114
|
a.qld__card--clickable__link {
|
|
116
115
|
color: var(--QLD-color-light__link);
|
|
117
|
-
@include QLD-underline(
|
|
116
|
+
@include QLD-underline("light");
|
|
118
117
|
// @include QLD-underline('light','noUnderline','buttonText','noVisited');
|
|
119
118
|
|
|
120
|
-
&:visited,
|
|
119
|
+
&:visited,
|
|
120
|
+
&:hover:visited {
|
|
121
121
|
color: var(--QLD-color-light__link--visited);
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
//make hit area entire card
|
|
125
|
-
|
|
125
|
+
|
|
126
126
|
&:after {
|
|
127
127
|
content: "";
|
|
128
128
|
position: absolute;
|
|
@@ -159,7 +159,6 @@
|
|
|
159
159
|
.qld__card__footer-link-icon {
|
|
160
160
|
@include QLD-space(margin-right, 0.5unit);
|
|
161
161
|
}
|
|
162
|
-
|
|
163
162
|
}
|
|
164
163
|
|
|
165
164
|
&.qld__card--icon {
|
|
@@ -173,7 +172,7 @@
|
|
|
173
172
|
@include QLD-space(padding-top, 1.25unit);
|
|
174
173
|
}
|
|
175
174
|
|
|
176
|
-
.qld__card__title{
|
|
175
|
+
.qld__card__title {
|
|
177
176
|
@include QLD-space(font-size, 1.25unit);
|
|
178
177
|
line-height: 1.4;
|
|
179
178
|
}
|
|
@@ -191,7 +190,7 @@
|
|
|
191
190
|
@include QLD-space(margin, 1unit 1unit 0 1unit);
|
|
192
191
|
|
|
193
192
|
@include QLD-media(md) {
|
|
194
|
-
@include QLD-space(margin, 1.25unit 1.25unit 0 1.25unit);
|
|
193
|
+
@include QLD-space(margin, 1.25unit 1.25unit 0 1.25unit);
|
|
195
194
|
@include QLD-space(width, 6unit);
|
|
196
195
|
@include QLD-space(height, 6unit);
|
|
197
196
|
}
|
|
@@ -201,14 +200,15 @@
|
|
|
201
200
|
@include QLD-space(width, 8unit);
|
|
202
201
|
@include QLD-space(height, 8unit);
|
|
203
202
|
}
|
|
204
|
-
|
|
205
|
-
svg,
|
|
203
|
+
|
|
204
|
+
svg,
|
|
205
|
+
i {
|
|
206
206
|
@include QLD-space(font-size, 2.813unit);
|
|
207
207
|
@include QLD-space(line-height, 6unit);
|
|
208
|
-
display: flex;
|
|
208
|
+
display: flex;
|
|
209
209
|
align-self: center;
|
|
210
|
-
@include QLD-space(margin-bottom,
|
|
211
|
-
|
|
210
|
+
@include QLD-space(margin-bottom, -0.25unit);
|
|
211
|
+
|
|
212
212
|
@include QLD-media(lg) {
|
|
213
213
|
@include QLD-space(font-size, 3.75unit);
|
|
214
214
|
@include QLD-space(line-height, 8unit);
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
text-align: left;
|
|
226
226
|
flex: 1 0 0%;
|
|
227
227
|
justify-content: center;
|
|
228
|
-
|
|
228
|
+
|
|
229
229
|
@include QLD-media(md) {
|
|
230
230
|
@include QLD-space(padding-top, 1.25unit);
|
|
231
231
|
}
|
|
@@ -247,7 +247,8 @@
|
|
|
247
247
|
@include QLD-space(margin, 1.25unit 0 1.25unit 1.5unit);
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
svg,
|
|
250
|
+
svg,
|
|
251
|
+
i {
|
|
251
252
|
@include QLD-space(font-size, 2.25unit);
|
|
252
253
|
@include QLD-space(line-height, 4unit);
|
|
253
254
|
}
|
|
@@ -255,8 +256,8 @@
|
|
|
255
256
|
}
|
|
256
257
|
|
|
257
258
|
&.qld__card--image {
|
|
258
|
-
.qld__card__inner{
|
|
259
|
-
@include QLD-space(padding-top, .75unit);
|
|
259
|
+
.qld__card__inner {
|
|
260
|
+
@include QLD-space(padding-top, 0.75unit);
|
|
260
261
|
|
|
261
262
|
@include QLD-media(md) {
|
|
262
263
|
@include QLD-space(padding-top, 1unit);
|
|
@@ -264,7 +265,6 @@
|
|
|
264
265
|
@include QLD-media(lg) {
|
|
265
266
|
@include QLD-space(padding-top, 1.25unit);
|
|
266
267
|
}
|
|
267
|
-
|
|
268
268
|
}
|
|
269
269
|
}
|
|
270
270
|
|
|
@@ -273,8 +273,8 @@
|
|
|
273
273
|
background-color: var(--QLD-color-light__background);
|
|
274
274
|
color: var(--QLD-color-light__text);
|
|
275
275
|
|
|
276
|
-
&.qld__card--icon{
|
|
277
|
-
.qld__card__icon{
|
|
276
|
+
&.qld__card--icon {
|
|
277
|
+
.qld__card__icon {
|
|
278
278
|
background-color: var(--QLD-color-light__background--shade);
|
|
279
279
|
}
|
|
280
280
|
}
|
|
@@ -285,15 +285,15 @@
|
|
|
285
285
|
background-color: var(--QLD-color-light__background--alt);
|
|
286
286
|
color: var(--QLD-color-light__text);
|
|
287
287
|
|
|
288
|
-
&.qld__card--icon{
|
|
289
|
-
.qld__card__icon{
|
|
288
|
+
&.qld__card--icon {
|
|
289
|
+
.qld__card__icon {
|
|
290
290
|
background-color: var(--QLD-color-light__background--alt-shade);
|
|
291
291
|
}
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
294
|
|
|
295
295
|
//Dark theme
|
|
296
|
-
&.qld__card--dark{
|
|
296
|
+
&.qld__card--dark {
|
|
297
297
|
background-color: var(--QLD-color-dark__background);
|
|
298
298
|
color: var(--QLD-color-dark__text);
|
|
299
299
|
|
|
@@ -308,23 +308,23 @@
|
|
|
308
308
|
color: var(--QLD-color-dark__heading);
|
|
309
309
|
}
|
|
310
310
|
|
|
311
|
-
.qld__card__icon{
|
|
311
|
+
.qld__card__icon {
|
|
312
312
|
background-color: var(--QLD-color-dark__background--shade);
|
|
313
313
|
|
|
314
314
|
i,
|
|
315
|
-
svg{
|
|
316
|
-
color:
|
|
315
|
+
svg {
|
|
316
|
+
color: var(--QLD-color-dark__heading);
|
|
317
317
|
}
|
|
318
318
|
}
|
|
319
319
|
|
|
320
|
-
.qld__card__image-tag{
|
|
320
|
+
.qld__card__image-tag {
|
|
321
321
|
color: var(--QLD-color-dark__link--on-action);
|
|
322
322
|
|
|
323
323
|
&--title,
|
|
324
|
-
&--length{
|
|
324
|
+
&--length {
|
|
325
325
|
background-color: var(--QLD-color-dark__action--primary);
|
|
326
326
|
}
|
|
327
|
-
}
|
|
327
|
+
}
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
//Dark Alt theme
|
|
@@ -343,84 +343,88 @@
|
|
|
343
343
|
color: var(--QLD-color-dark__heading);
|
|
344
344
|
}
|
|
345
345
|
|
|
346
|
-
.qld__card__icon{
|
|
346
|
+
.qld__card__icon {
|
|
347
347
|
background-color: var(--QLD-color-dark__background--alt-shade);
|
|
348
348
|
|
|
349
349
|
i,
|
|
350
|
-
svg{
|
|
350
|
+
svg {
|
|
351
351
|
color: var(--QLD-color-dark__heading);
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
354
|
|
|
355
|
-
.qld__card__image-tag{
|
|
355
|
+
.qld__card__image-tag {
|
|
356
356
|
color: var(--QLD-color-dark__link--on-action);
|
|
357
357
|
|
|
358
358
|
&--title,
|
|
359
|
-
&--length{
|
|
359
|
+
&--length {
|
|
360
360
|
background-color: var(--QLD-color-dark__action--primary);
|
|
361
361
|
}
|
|
362
|
-
}
|
|
362
|
+
}
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
.qld__body--dark &,
|
|
366
366
|
.qld__body--dark-alt &,
|
|
367
367
|
.qld__banner--dark &,
|
|
368
|
-
.qld__banner--dark-alt &{
|
|
368
|
+
.qld__banner--dark-alt & {
|
|
369
369
|
border-color: var(--QLD-color-dark__border--alt);
|
|
370
370
|
}
|
|
371
|
-
|
|
372
371
|
}
|
|
373
372
|
|
|
374
|
-
|
|
375
|
-
.
|
|
376
|
-
|
|
373
|
+
.qld__body--dark,
|
|
374
|
+
.qld__banner--dark,
|
|
375
|
+
.qld__banner--dark-alt,
|
|
376
|
+
.qld__body--dark-alt {
|
|
377
|
+
.qld__card {
|
|
377
378
|
a.qld__card--clickable__link {
|
|
378
|
-
@include QLD-underline(
|
|
379
|
+
@include QLD-underline("light");
|
|
379
380
|
color: var(--QLD-color-light__link);
|
|
380
381
|
|
|
381
|
-
&:visited,
|
|
382
|
+
&:visited,
|
|
383
|
+
&:hover:visited {
|
|
382
384
|
color: var(--QLD-color-light__link--visited);
|
|
383
385
|
}
|
|
384
|
-
|
|
386
|
+
|
|
385
387
|
// &:focus {
|
|
386
388
|
// outline: none;
|
|
387
389
|
// }
|
|
388
390
|
}
|
|
389
391
|
|
|
390
|
-
&.qld__card--dark,
|
|
391
|
-
|
|
392
|
-
|
|
392
|
+
&.qld__card--dark,
|
|
393
|
+
&.qld__card--dark-alt {
|
|
394
|
+
a.qld__card--clickable__link {
|
|
395
|
+
@include QLD-underline("dark");
|
|
393
396
|
color: var(--QLD-color-dark__link);
|
|
394
397
|
|
|
395
|
-
&:visited,
|
|
398
|
+
&:visited,
|
|
399
|
+
&:hover:visited {
|
|
396
400
|
color: var(--QLD-color-dark__link--visited);
|
|
397
401
|
}
|
|
398
|
-
|
|
402
|
+
|
|
399
403
|
// &:focus {
|
|
400
404
|
// outline: none;
|
|
401
405
|
// }
|
|
402
|
-
|
|
403
406
|
}
|
|
404
407
|
}
|
|
405
408
|
}
|
|
406
|
-
}
|
|
409
|
+
}
|
|
407
410
|
|
|
408
|
-
.qld__body,
|
|
409
|
-
|
|
411
|
+
.qld__body,
|
|
412
|
+
.qld__body--alt {
|
|
413
|
+
.qld__card {
|
|
410
414
|
a.qld__card--clickable__link {
|
|
411
415
|
color: var(--QLD-color-light__link);
|
|
412
|
-
@include QLD-underline(
|
|
416
|
+
@include QLD-underline("light");
|
|
413
417
|
}
|
|
414
418
|
|
|
415
|
-
&.qld__card--dark,
|
|
416
|
-
|
|
419
|
+
&.qld__card--dark,
|
|
420
|
+
&.qld__card--dark-alt {
|
|
421
|
+
a.qld__card--clickable__link {
|
|
417
422
|
color: var(--QLD-color-dark__link);
|
|
418
|
-
@include QLD-underline(
|
|
419
|
-
|
|
423
|
+
@include QLD-underline("dark");
|
|
420
424
|
}
|
|
421
425
|
}
|
|
422
426
|
}
|
|
423
|
-
}
|
|
427
|
+
}
|
|
424
428
|
|
|
425
429
|
// Card listing match height
|
|
426
430
|
.qld__body .qld__card-list,
|
|
@@ -432,7 +436,7 @@
|
|
|
432
436
|
width: 100%;
|
|
433
437
|
|
|
434
438
|
@include QLD-media(md) {
|
|
435
|
-
margin: 0 .25rem;
|
|
439
|
+
margin: 0 0.25rem;
|
|
436
440
|
}
|
|
437
441
|
@include QLD-media(lg) {
|
|
438
442
|
margin: 0;
|
|
@@ -450,8 +454,8 @@
|
|
|
450
454
|
@include QLD-space(padding-right, 1unit);
|
|
451
455
|
@include QLD-space(margin-top, 1.5unit);
|
|
452
456
|
@include QLD-media(md) {
|
|
453
|
-
@include QLD-space(padding-left, .75unit);
|
|
454
|
-
@include QLD-space(padding-right, .75unit);
|
|
457
|
+
@include QLD-space(padding-left, 0.75unit);
|
|
458
|
+
@include QLD-space(padding-right, 0.75unit);
|
|
455
459
|
}
|
|
456
460
|
@include QLD-media(lg) {
|
|
457
461
|
@include QLD-space(margin-top, 2unit);
|
|
@@ -466,16 +470,16 @@
|
|
|
466
470
|
@include QLD-media(md) {
|
|
467
471
|
.col-md-6:nth-of-type(-n + 2) {
|
|
468
472
|
@include QLD-space(margin-top, 0unit);
|
|
469
|
-
}
|
|
473
|
+
}
|
|
470
474
|
}
|
|
471
475
|
@include QLD-media(lg) {
|
|
472
476
|
.col-lg-4:nth-of-type(-n + 3) {
|
|
473
477
|
@include QLD-space(margin-top, 0unit);
|
|
474
|
-
}
|
|
475
|
-
.col-lg-3:nth-of-type(-n + 4){
|
|
478
|
+
}
|
|
479
|
+
.col-lg-3:nth-of-type(-n + 4) {
|
|
476
480
|
@include QLD-space(margin-top, 0unit);
|
|
477
481
|
}
|
|
478
|
-
.col-lg-6:nth-of-type(-n + 2){
|
|
482
|
+
.col-lg-6:nth-of-type(-n + 2) {
|
|
479
483
|
@include QLD-space(margin-top, 0unit);
|
|
480
484
|
}
|
|
481
485
|
}
|
|
@@ -508,10 +512,6 @@
|
|
|
508
512
|
@include QLD-space(padding-right, 1unit);
|
|
509
513
|
@include QLD-space(margin-top, 2unit);
|
|
510
514
|
|
|
511
|
-
.qld__slick-controls {
|
|
512
|
-
order: 1;
|
|
513
|
-
}
|
|
514
|
-
|
|
515
515
|
a {
|
|
516
516
|
order: 0;
|
|
517
517
|
}
|
|
@@ -520,50 +520,45 @@
|
|
|
520
520
|
justify-content: center;
|
|
521
521
|
}
|
|
522
522
|
}
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
523
|
}
|
|
527
524
|
|
|
528
525
|
// .qld__card--wrapper{
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
526
|
+
.qld__card-intro {
|
|
527
|
+
@include QLD-space(padding-bottom, 1.5unit);
|
|
528
|
+
}
|
|
532
529
|
// }
|
|
533
530
|
|
|
534
|
-
|
|
535
531
|
//Card list background image and pattern
|
|
536
|
-
.qld__card--wrapper{
|
|
537
|
-
&.qld__card--wrapper-bg-image{
|
|
532
|
+
.qld__card--wrapper {
|
|
533
|
+
&.qld__card--wrapper-bg-image {
|
|
538
534
|
background-repeat: no-repeat;
|
|
539
535
|
background-position: center center;
|
|
540
536
|
background-size: cover;
|
|
541
537
|
}
|
|
542
|
-
&.qld__card--wrapper-bg-pattern{
|
|
538
|
+
&.qld__card--wrapper-bg-pattern {
|
|
543
539
|
background-repeat: repeat;
|
|
544
540
|
background-position: left top;
|
|
545
|
-
|
|
546
541
|
}
|
|
547
542
|
}
|
|
548
543
|
|
|
549
544
|
// Checks if two card components are adjacent and same background to reduce padding
|
|
550
|
-
.qld__body.qld__card--wrapper{
|
|
545
|
+
.qld__body.qld__card--wrapper {
|
|
551
546
|
+ .qld__body.qld__card--wrapper,
|
|
552
|
-
+ data + .qld__body.qld__card--wrapper{
|
|
553
|
-
@include QLD-space(margin-top, -1unit
|
|
547
|
+
+ data + .qld__body.qld__card--wrapper {
|
|
548
|
+
@include QLD-space(margin-top, -1unit);
|
|
554
549
|
|
|
555
|
-
.qld__card-intro{
|
|
556
|
-
@include QLD-space(padding-bottom, 1.5unit
|
|
550
|
+
.qld__card-intro {
|
|
551
|
+
@include QLD-space(padding-bottom, 1.5unit);
|
|
557
552
|
|
|
558
553
|
&.qld__card-intro--no-top-p {
|
|
559
|
-
padding-top: 0;
|
|
554
|
+
padding-top: 0;
|
|
560
555
|
}
|
|
561
556
|
}
|
|
562
557
|
@include QLD-media(md) {
|
|
563
|
-
@include QLD-space(margin-top,
|
|
558
|
+
@include QLD-space(margin-top, -0.5unit);
|
|
564
559
|
}
|
|
565
560
|
@include QLD-media(lg) {
|
|
566
|
-
@include QLD-space(margin-top, -2unit
|
|
561
|
+
@include QLD-space(margin-top, -2unit);
|
|
567
562
|
}
|
|
568
563
|
|
|
569
564
|
&.qld__body--light,
|
|
@@ -571,132 +566,107 @@
|
|
|
571
566
|
&.qld__body--dark,
|
|
572
567
|
&.qld__body--dark-alt,
|
|
573
568
|
&.qld__card--wrapper-bg-pattern,
|
|
574
|
-
&.qld__card--wrapper-bg-image{
|
|
569
|
+
&.qld__card--wrapper-bg-image {
|
|
575
570
|
@include QLD-space(margin-top, 0unit);
|
|
576
571
|
}
|
|
577
|
-
|
|
578
572
|
}
|
|
579
|
-
+ .qld__body:not(.qld__card--wrapper){
|
|
573
|
+
+ .qld__body:not(.qld__card--wrapper) {
|
|
580
574
|
@include QLD-space(padding-top, 2.5unit !important);
|
|
581
575
|
@include QLD-media(lg) {
|
|
582
576
|
@include QLD-space(padding-top, 4unit !important);
|
|
583
577
|
}
|
|
584
578
|
}
|
|
585
|
-
&.qld__body--alt{
|
|
579
|
+
&.qld__body--alt {
|
|
586
580
|
+ .qld__body.qld__card--wrapper,
|
|
587
|
-
+ data + .qld__body.qld__card--wrapper{
|
|
588
|
-
@include QLD-space(margin-top, 0unit
|
|
589
|
-
|
|
590
|
-
&.qld__body--alt{
|
|
591
|
-
@include QLD-space(margin-top, -1unit
|
|
581
|
+
+ data + .qld__body.qld__card--wrapper {
|
|
582
|
+
@include QLD-space(margin-top, 0unit);
|
|
583
|
+
|
|
584
|
+
&.qld__body--alt {
|
|
585
|
+
@include QLD-space(margin-top, -1unit);
|
|
592
586
|
@include QLD-media(md) {
|
|
593
|
-
@include QLD-space(margin-top,
|
|
587
|
+
@include QLD-space(margin-top, -0.5unit);
|
|
594
588
|
}
|
|
595
589
|
@include QLD-media(lg) {
|
|
596
|
-
@include QLD-space(margin-top, -2unit
|
|
590
|
+
@include QLD-space(margin-top, -2unit);
|
|
597
591
|
}
|
|
598
592
|
&.qld__card--wrapper-bg-pattern,
|
|
599
|
-
&.qld__card--wrapper-bg-image{
|
|
593
|
+
&.qld__card--wrapper-bg-image {
|
|
600
594
|
@include QLD-space(margin-top, 0unit);
|
|
601
595
|
}
|
|
602
596
|
}
|
|
603
597
|
}
|
|
604
598
|
}
|
|
605
|
-
&.qld__body--dark{
|
|
599
|
+
&.qld__body--dark {
|
|
606
600
|
+ .qld__body.qld__card--wrapper,
|
|
607
|
-
+ data + .qld__body.qld__card--wrapper{
|
|
608
|
-
@include QLD-space(margin-top, 0unit
|
|
609
|
-
|
|
610
|
-
&.qld__body--dark{
|
|
611
|
-
@include QLD-space(margin-top, -1unit
|
|
601
|
+
+ data + .qld__body.qld__card--wrapper {
|
|
602
|
+
@include QLD-space(margin-top, 0unit);
|
|
603
|
+
|
|
604
|
+
&.qld__body--dark {
|
|
605
|
+
@include QLD-space(margin-top, -1unit);
|
|
612
606
|
@include QLD-media(md) {
|
|
613
|
-
@include QLD-space(margin-top,
|
|
607
|
+
@include QLD-space(margin-top, -0.5unit);
|
|
614
608
|
}
|
|
615
609
|
@include QLD-media(lg) {
|
|
616
|
-
@include QLD-space(margin-top, -2unit
|
|
610
|
+
@include QLD-space(margin-top, -2unit);
|
|
617
611
|
}
|
|
618
612
|
&.qld__card--wrapper-bg-pattern,
|
|
619
|
-
&.qld__card--wrapper-bg-image{
|
|
613
|
+
&.qld__card--wrapper-bg-image {
|
|
620
614
|
@include QLD-space(margin-top, 0unit);
|
|
621
615
|
}
|
|
622
616
|
}
|
|
623
617
|
}
|
|
624
618
|
}
|
|
625
|
-
&.qld__body--dark-alt{
|
|
619
|
+
&.qld__body--dark-alt {
|
|
626
620
|
+ .qld__body.qld__card--wrapper,
|
|
627
|
-
+ data + .qld__body.qld__card--wrapper{
|
|
628
|
-
@include QLD-space(margin-top, 0unit
|
|
629
|
-
|
|
630
|
-
&.qld__body--dark-alt{
|
|
631
|
-
@include QLD-space(margin-top, -1unit
|
|
621
|
+
+ data + .qld__body.qld__card--wrapper {
|
|
622
|
+
@include QLD-space(margin-top, 0unit);
|
|
623
|
+
|
|
624
|
+
&.qld__body--dark-alt {
|
|
625
|
+
@include QLD-space(margin-top, -1unit);
|
|
632
626
|
@include QLD-media(md) {
|
|
633
|
-
@include QLD-space(margin-top,
|
|
627
|
+
@include QLD-space(margin-top, -0.5unit);
|
|
634
628
|
}
|
|
635
629
|
@include QLD-media(lg) {
|
|
636
|
-
@include QLD-space(margin-top, -2unit
|
|
630
|
+
@include QLD-space(margin-top, -2unit);
|
|
637
631
|
}
|
|
638
632
|
&.qld__card--wrapper-bg-pattern,
|
|
639
|
-
&.qld__card--wrapper-bg-image{
|
|
633
|
+
&.qld__card--wrapper-bg-image {
|
|
640
634
|
@include QLD-space(margin-top, 0unit);
|
|
641
635
|
}
|
|
642
636
|
}
|
|
643
637
|
}
|
|
644
638
|
}
|
|
645
639
|
&.qld__card--wrapper-bg-pattern,
|
|
646
|
-
&.qld__card--wrapper-bg-image{
|
|
640
|
+
&.qld__card--wrapper-bg-image {
|
|
647
641
|
@include QLD-space(padding-top, 2.5unit !important);
|
|
648
642
|
@include QLD-media(lg) {
|
|
649
643
|
@include QLD-space(padding-top, 4unit !important);
|
|
650
644
|
}
|
|
651
645
|
}
|
|
652
|
-
|
|
653
646
|
}
|
|
654
647
|
.qld__body.qld__card--wrapper.qld__card--wrapper-bg-pattern,
|
|
655
|
-
.qld__body.qld__card--wrapper.qld__card--wrapper-bg-image{
|
|
648
|
+
.qld__body.qld__card--wrapper.qld__card--wrapper-bg-image {
|
|
656
649
|
+ .qld__body.qld__card--wrapper,
|
|
657
650
|
+ data + .qld__body.qld__card--wrapper,
|
|
658
651
|
+ .qld__body.qld__card--wrapper,
|
|
659
|
-
+ data + .qld__body.qld__card--wrapper{
|
|
652
|
+
+ data + .qld__body.qld__card--wrapper {
|
|
660
653
|
@include QLD-space(padding-top, 2.5unit !important);
|
|
661
654
|
@include QLD-media(lg) {
|
|
662
|
-
|
|
663
|
-
|
|
655
|
+
@include QLD-space(padding-top, 4unit !important);
|
|
656
|
+
}
|
|
664
657
|
}
|
|
665
|
-
|
|
666
658
|
}
|
|
667
|
-
.qld__body--alt.qld__card--wrapper{
|
|
659
|
+
.qld__body--alt.qld__card--wrapper {
|
|
668
660
|
+ .qld__body--alt.qld__card--wrapper,
|
|
669
|
-
+ data + .qld__body--alt.qld__card--wrapper{
|
|
661
|
+
+ data + .qld__body--alt.qld__card--wrapper {
|
|
670
662
|
@include QLD-space(margin-top, -1unit);
|
|
671
663
|
@include QLD-media(lg) {
|
|
672
664
|
@include QLD-space(margin-top, -2unit);
|
|
673
665
|
}
|
|
674
666
|
&.qld__body,
|
|
675
667
|
&.qld__body--dark,
|
|
676
|
-
&.qld__body--dark-alt{
|
|
668
|
+
&.qld__body--dark-alt {
|
|
677
669
|
@include QLD-space(margin-top, 0unit);
|
|
678
670
|
}
|
|
679
671
|
}
|
|
680
672
|
}
|
|
681
|
-
|
|
682
|
-
//Slick slider
|
|
683
|
-
.qld__card--slider{
|
|
684
|
-
|
|
685
|
-
.qld__card-list__footer{
|
|
686
|
-
justify-content: space-between;
|
|
687
|
-
align-items: centre;
|
|
688
|
-
@include QLD-space(margin-top, 1.5unit);
|
|
689
|
-
|
|
690
|
-
.qld__slick-controls{
|
|
691
|
-
@include QLD-media(lg) {
|
|
692
|
-
flex: 1;
|
|
693
|
-
@include QLD-space(margin-right, -6.875unit);
|
|
694
|
-
}
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
.qld__cta-link{
|
|
698
|
-
display: flex;
|
|
699
|
-
align-items: center;
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
.qld__pre-footer {
|
|
2
|
+
.container-fluid {
|
|
3
|
+
display: flex;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
position: relative;
|
|
6
|
+
align-items: flex-start;
|
|
7
|
+
@include QLD-media(sm) {
|
|
8
|
+
flex-direction: row;
|
|
9
|
+
align-items: center;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
.qld__widgets__back_to_top {
|
|
13
|
+
position: relative;
|
|
14
|
+
top: 40px;
|
|
15
|
+
padding: 0;
|
|
16
|
+
margin: 0 auto 40px 0;
|
|
17
|
+
@include QLD-media(sm) {
|
|
18
|
+
margin-bottom: 0;
|
|
19
|
+
margin-right: 0;
|
|
20
|
+
margin-left: auto;
|
|
21
|
+
top: 0;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@mixin QLD-BTT-arrow-colours($interact-colour) {
|
|
27
|
+
&:hover,
|
|
28
|
+
&:focus,
|
|
29
|
+
&:active {
|
|
30
|
+
&::after,
|
|
31
|
+
&::before {
|
|
32
|
+
border-color: $interact-colour;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.qld__body {
|
|
38
|
+
.qld__widgets__back_to_top > .qld__direction-link {
|
|
39
|
+
&:visited {
|
|
40
|
+
color: var(--QLD-color-light__link);
|
|
41
|
+
text-decoration: var(--QLD-color-light__underline);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@include QLD-BTT-arrow-colours(
|
|
45
|
+
var(--QLD-color-light__action--secondary-hover)
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.qld__body.qld__body--dark,
|
|
51
|
+
.qld__body.qld__body--dark-alt {
|
|
52
|
+
.qld__widgets__back_to_top > .qld__direction-link {
|
|
53
|
+
&:visited {
|
|
54
|
+
color: var(--QLD-color-dark__link);
|
|
55
|
+
text-decoration: var(--QLD-color-dark__underline);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@include QLD-BTT-arrow-colours(
|
|
59
|
+
var(--QLD-color-dark__action--secondary-hover)
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
}
|