@qhealth-design-system/core 1.0.38
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/.babelrc +15 -0
- package/.browserslistrc +5 -0
- package/.editorconfig +19 -0
- package/.eslintignore +1 -0
- package/.eslintrc +25 -0
- package/.gitattributes +2 -0
- package/.github/workflows/release_package.yml +103 -0
- package/CHANGELOG.md +14 -0
- package/README.md +534 -0
- package/dist/api/service_finder/schemas.json +1 -0
- package/dist/component-abstract.html +884 -0
- package/dist/component-accordion.html +1157 -0
- package/dist/component-banner.html +928 -0
- package/dist/component-banner_advanced.html +1524 -0
- package/dist/component-banner_basic.html +1189 -0
- package/dist/component-banner_intermediate.html +1288 -0
- package/dist/component-body.html +919 -0
- package/dist/component-breadcrumbs.html +881 -0
- package/dist/component-btn.html +829 -0
- package/dist/component-callout.html +964 -0
- package/dist/component-card_feature.html +1805 -0
- package/dist/component-card_multi_action.html +1965 -0
- package/dist/component-card_no_action.html +1632 -0
- package/dist/component-card_single_action.html +1772 -0
- package/dist/component-code.html +928 -0
- package/dist/component-footer.html +1131 -0
- package/dist/component-forms.html +1297 -0
- package/dist/component-global-elements.html +1243 -0
- package/dist/component-global_alert.html +891 -0
- package/dist/component-header.html +1155 -0
- package/dist/component-in_page_navigation.html +920 -0
- package/dist/component-internal_navigation.html +1097 -0
- package/dist/component-left_hand_navigation.html +995 -0
- package/dist/component-main_navigation.html +999 -0
- package/dist/component-mega_main_navigation.html +1145 -0
- package/dist/component-multi_column.html +1116 -0
- package/dist/component-page_alert.html +911 -0
- package/dist/component-pagination.html +971 -0
- package/dist/component-tag_list.html +979 -0
- package/dist/component-updated_date.html +778 -0
- package/dist/component-widgets.html +851 -0
- package/dist/components/_global/import.xml +95 -0
- package/dist/components/_global/manifest.json +11 -0
- package/dist/components/_global/presentation.js +50 -0
- package/dist/components/_global/static.html +30 -0
- package/dist/components/_template/import.xml +299 -0
- package/dist/components/_template/manifest.json +40 -0
- package/dist/components/_template/presentation.js +12 -0
- package/dist/components/_template/static.html +4 -0
- package/dist/components/abstract/import.xml +231 -0
- package/dist/components/abstract/manifest.json +29 -0
- package/dist/components/abstract/presentation.js +33 -0
- package/dist/components/abstract/static.html +9 -0
- package/dist/components/accordion/import.xml +1929 -0
- package/dist/components/accordion/manifest.json +427 -0
- package/dist/components/accordion/presentation.js +112 -0
- package/dist/components/accordion/static.html +56 -0
- package/dist/components/banner/import.xml +95 -0
- package/dist/components/banner/manifest.json +11 -0
- package/dist/components/banner/presentation.js +138 -0
- package/dist/components/banner/static.html +39 -0
- package/dist/components/banner_advanced/import.xml +1969 -0
- package/dist/components/banner_advanced/manifest.json +1450 -0
- package/dist/components/banner_advanced/presentation.js +564 -0
- package/dist/components/banner_advanced/static.html +159 -0
- package/dist/components/banner_basic/import.xml +907 -0
- package/dist/components/banner_basic/manifest.json +151 -0
- package/dist/components/banner_basic/presentation.js +325 -0
- package/dist/components/banner_basic/static.html +86 -0
- package/dist/components/banner_intermediate/import.xml +1473 -0
- package/dist/components/banner_intermediate/manifest.json +248 -0
- package/dist/components/banner_intermediate/presentation.js +410 -0
- package/dist/components/banner_intermediate/static.html +102 -0
- package/dist/components/body/import.xml +343 -0
- package/dist/components/body/manifest.json +46 -0
- package/dist/components/body/presentation.js +37 -0
- package/dist/components/body/static.html +5 -0
- package/dist/components/breadcrumbs/import.xml +95 -0
- package/dist/components/breadcrumbs/manifest.json +9 -0
- package/dist/components/breadcrumbs/presentation.js +99 -0
- package/dist/components/breadcrumbs/static.html +21 -0
- package/dist/components/callout/import.xml +953 -0
- package/dist/components/callout/manifest.json +121 -0
- package/dist/components/callout/presentation.js +103 -0
- package/dist/components/callout/static.html +10 -0
- package/dist/components/card_feature/import.xml +2355 -0
- package/dist/components/card_feature/manifest.json +1390 -0
- package/dist/components/card_feature/presentation.js +365 -0
- package/dist/components/card_feature/static.html +80 -0
- package/dist/components/card_multi_action/import.xml +1539 -0
- package/dist/components/card_multi_action/manifest.json +1314 -0
- package/dist/components/card_multi_action/presentation.js +638 -0
- package/dist/components/card_multi_action/static.html +120 -0
- package/dist/components/card_no_action/import.xml +1449 -0
- package/dist/components/card_no_action/manifest.json +1264 -0
- package/dist/components/card_no_action/presentation.js +454 -0
- package/dist/components/card_no_action/static.html +94 -0
- package/dist/components/card_single_action/import.xml +1539 -0
- package/dist/components/card_single_action/manifest.json +1273 -0
- package/dist/components/card_single_action/presentation.js +498 -0
- package/dist/components/card_single_action/static.html +103 -0
- package/dist/components/code/import.xml +569 -0
- package/dist/components/code/manifest.json +112 -0
- package/dist/components/code/presentation.js +124 -0
- package/dist/components/code/static.html +15 -0
- package/dist/components/footer/import.xml +95 -0
- package/dist/components/footer/manifest.json +9 -0
- package/dist/components/footer/presentation.js +409 -0
- package/dist/components/footer/static.html +146 -0
- package/dist/components/global_alert/import.xml +95 -0
- package/dist/components/global_alert/manifest.json +9 -0
- package/dist/components/global_alert/presentation.js +81 -0
- package/dist/components/global_alert/static.html +26 -0
- package/dist/components/header/import.xml +95 -0
- package/dist/components/header/manifest.json +11 -0
- package/dist/components/header/presentation.js +190 -0
- package/dist/components/header/static.html +158 -0
- package/dist/components/horizontal_rule/import.xml +547 -0
- package/dist/components/horizontal_rule/manifest.json +69 -0
- package/dist/components/horizontal_rule/presentation.js +50 -0
- package/dist/components/horizontal_rule/static.html +4 -0
- package/dist/components/in_page_navigation/import.xml +253 -0
- package/dist/components/in_page_navigation/manifest.json +35 -0
- package/dist/components/in_page_navigation/presentation.js +14 -0
- package/dist/components/in_page_navigation/static.html +13 -0
- package/dist/components/internal_navigation/import.xml +95 -0
- package/dist/components/internal_navigation/manifest.json +11 -0
- package/dist/components/internal_navigation/presentation.js +165 -0
- package/dist/components/internal_navigation/static.html +130 -0
- package/dist/components/left_hand_navigation/import.xml +299 -0
- package/dist/components/left_hand_navigation/manifest.json +40 -0
- package/dist/components/left_hand_navigation/presentation.js +178 -0
- package/dist/components/left_hand_navigation/static.html +64 -0
- package/dist/components/main_navigation/import.xml +95 -0
- package/dist/components/main_navigation/manifest.json +11 -0
- package/dist/components/main_navigation/presentation.js +150 -0
- package/dist/components/main_navigation/static.html +80 -0
- package/dist/components/mega_main_navigation/import.xml +95 -0
- package/dist/components/mega_main_navigation/manifest.json +9 -0
- package/dist/components/mega_main_navigation/presentation.js +380 -0
- package/dist/components/mega_main_navigation/static.html +153 -0
- package/dist/components/multi_column/import.xml +1631 -0
- package/dist/components/multi_column/manifest.json +233 -0
- package/dist/components/multi_column/presentation.js +249 -0
- package/dist/components/multi_column/static.html +36 -0
- package/dist/components/page_alert/import.xml +479 -0
- package/dist/components/page_alert/manifest.json +63 -0
- package/dist/components/page_alert/presentation.js +67 -0
- package/dist/components/page_alert/static.html +8 -0
- package/dist/components/pagination/import.xml +95 -0
- package/dist/components/pagination/manifest.json +42 -0
- package/dist/components/pagination/presentation.js +84 -0
- package/dist/components/pagination/static.html +5 -0
- package/dist/components/updated_date/import.xml +95 -0
- package/dist/components/updated_date/manifest.json +9 -0
- package/dist/components/updated_date/presentation.js +34 -0
- package/dist/components/updated_date/static.html +6 -0
- package/dist/components/widgets/import.xml +95 -0
- package/dist/components/widgets/manifest.json +9 -0
- package/dist/components/widgets/presentation.js +40 -0
- package/dist/components/widgets/static.html +0 -0
- package/dist/components.html +790 -0
- package/dist/externals/componentPreview.js +101 -0
- package/dist/externals/dsComponentLoader.js +410 -0
- package/dist/externals/esri-leaflet-vector.js +5 -0
- package/dist/externals/esri-leaflet.js +12 -0
- package/dist/externals/fb-handlebars.min.js +29 -0
- package/dist/externals/fb-typeahead.bundle.min.js +6 -0
- package/dist/externals/funnelback.autocompletion-2.6.0.js +678 -0
- package/dist/externals/getPagination.js +62 -0
- package/dist/externals/handlebars.min-v4.7.6.js +29 -0
- package/dist/externals/leaflet.js +6 -0
- package/dist/externals/populateDatastoreSim.js +381 -0
- package/dist/externals/tinymce_classes.css +62 -0
- package/dist/home.html +694 -0
- package/dist/index.html +710 -0
- package/dist/inner-with-nav.html +1853 -0
- package/dist/inner.html +671 -0
- package/dist/js/helpers.js +892 -0
- package/dist/js/main.js +55 -0
- package/dist/js/main.js.map +1 -0
- package/dist/js/runtime.js +2 -0
- package/dist/js/runtime.js.map +1 -0
- package/dist/main.css +918 -0
- package/dist/main.css.map +1 -0
- package/dist/mysource_files/ajax-loader.gif +0 -0
- package/dist/mysource_files/favicons/favicon.ico +0 -0
- package/dist/mysource_files/img/100x100.jpg +0 -0
- package/dist/mysource_files/img/600x260.jpg +0 -0
- package/dist/mysource_files/img/Heart-Pattern-Dark.png +0 -0
- package/dist/mysource_files/img/Heart-Pattern.png +0 -0
- package/dist/mysource_files/img/banner-background--desktop.png +0 -0
- package/dist/mysource_files/img/banner-background--mobile.png +0 -0
- package/dist/mysource_files/img/banner-bg.png +0 -0
- package/dist/mysource_files/img/banner.png +0 -0
- package/dist/mysource_files/img/card--brand.png +0 -0
- package/dist/mysource_files/img/card--components.png +0 -0
- package/dist/mysource_files/img/card--content.png +0 -0
- package/dist/mysource_files/img/header-logo-agov.png +0 -0
- package/dist/mysource_files/img/header-logo-qgov--dark.svg +63 -0
- package/dist/mysource_files/img/header-logo-qgov--light.svg +56 -0
- package/dist/mysource_files/img/header-logo-qgov--pre-dark.svg +56 -0
- package/dist/mysource_files/img/header-search.svg +3 -0
- package/dist/mysource_files/img/layers-2x.png +0 -0
- package/dist/mysource_files/img/layers.png +0 -0
- package/dist/mysource_files/img/marker-icon.png +0 -0
- package/dist/mysource_files/img/svg-icons.svg +155 -0
- package/dist/mysource_files/img/video-play.svg +3 -0
- package/dist/mysource_files/slick.eot +0 -0
- package/dist/mysource_files/slick.svg +14 -0
- package/dist/mysource_files/slick.ttf +0 -0
- package/dist/mysource_files/slick.woff +0 -0
- package/package-lock.json +14276 -0
- package/package.json +79 -0
- package/scripts/add_component.sh +109 -0
- package/src/assets/favicons/favicon.ico +0 -0
- package/src/assets/img/100x100.jpg +0 -0
- package/src/assets/img/600x260.jpg +0 -0
- package/src/assets/img/Heart-Pattern-Dark.png +0 -0
- package/src/assets/img/Heart-Pattern.png +0 -0
- package/src/assets/img/banner-background--desktop.png +0 -0
- package/src/assets/img/banner-background--mobile.png +0 -0
- package/src/assets/img/banner-bg.png +0 -0
- package/src/assets/img/banner.png +0 -0
- package/src/assets/img/card--brand.png +0 -0
- package/src/assets/img/card--components.png +0 -0
- package/src/assets/img/card--content.png +0 -0
- package/src/assets/img/header-logo-agov.png +0 -0
- package/src/assets/img/header-logo-qgov--dark.svg +63 -0
- package/src/assets/img/header-logo-qgov--light.svg +56 -0
- package/src/assets/img/header-logo-qgov--pre-dark.svg +56 -0
- package/src/assets/img/header-search.svg +3 -0
- package/src/assets/img/layers-2x.png +0 -0
- package/src/assets/img/layers.png +0 -0
- package/src/assets/img/marker-icon.png +0 -0
- package/src/assets/img/svg-icons.svg +155 -0
- package/src/assets/img/video-play.svg +3 -0
- package/src/components/_global/css/admin/component.scss +71 -0
- package/src/components/_global/css/body/component.scss +897 -0
- package/src/components/_global/css/btn/component.scss +564 -0
- package/src/components/_global/css/cta_links/component.scss +121 -0
- package/src/components/_global/css/direction_links/component.scss +196 -0
- package/src/components/_global/css/example/component.scss +54 -0
- package/src/components/_global/css/forms/control_inputs/component.scss +349 -0
- package/src/components/_global/css/forms/general/component.scss +298 -0
- package/src/components/_global/css/forms/select/component.scss +230 -0
- package/src/components/_global/css/forms/text/component.scss +402 -0
- package/src/components/_global/css/global.scss +42 -0
- package/src/components/_global/css/grid-12/component.scss +331 -0
- package/src/components/_global/css/headings/component.scss +172 -0
- package/src/components/_global/css/icons/component.scss +29 -0
- package/src/components/_global/css/link_columns/component.scss +194 -0
- package/src/components/_global/css/link_list/component.scss +37 -0
- package/src/components/_global/css/modal/component.scss +182 -0
- package/src/components/_global/css/slick/component.scss +25 -0
- package/src/components/_global/css/table/component.scss +211 -0
- package/src/components/_global/css/tabs/component.scss +43 -0
- package/src/components/_global/css/tags/component.scss +272 -0
- package/src/components/_global/css/user_location/component.scss +38 -0
- package/src/components/_global/css/version/component.scss +47 -0
- package/src/components/_global/html/component.hbs +108 -0
- package/src/components/_global/html/ds_component.hbs +30 -0
- package/src/components/_global/html/head.html +63 -0
- package/src/components/_global/html/scripts.html +58 -0
- package/src/components/_global/js/_polyfills/global.js +18 -0
- package/src/components/_global/js/animate/global.js +324 -0
- package/src/components/_global/js/forms/global.js +182 -0
- package/src/components/_global/js/global.js +302 -0
- package/src/components/_global/js/manifest.json +11 -0
- package/src/components/_global/js/modal/global.js +236 -0
- package/src/components/_global/js/slick/global.js +153 -0
- package/src/components/_global/js/tabs/global.js +305 -0
- package/src/components/_global/js/user_location/global.js +116 -0
- package/src/components/_template/css/component.scss +22 -0
- package/src/components/_template/html/component-page.html +85 -0
- package/src/components/_template/html/component.hbs +4 -0
- package/src/components/_template/js/global.js +6 -0
- package/src/components/_template/js/manifest.json +40 -0
- package/src/components/abstract/css/component.scss +91 -0
- package/src/components/abstract/html/component.hbs +9 -0
- package/src/components/abstract/js/manifest.json +29 -0
- package/src/components/accordion/css/component.scss +329 -0
- package/src/components/accordion/html/accordion-group.html +157 -0
- package/src/components/accordion/html/component.hbs +46 -0
- package/src/components/accordion/html/default.html +92 -0
- package/src/components/accordion/js/global.js +413 -0
- package/src/components/accordion/js/manifest.json +427 -0
- package/src/components/banner/css/component.scss +664 -0
- package/src/components/banner/html/component.hbs +52 -0
- package/src/components/banner/js/manifest.json +11 -0
- package/src/components/banner_advanced/css/component.scss +7 -0
- package/src/components/banner_advanced/html/component.hbs +213 -0
- package/src/components/banner_advanced/js/global.js +6 -0
- package/src/components/banner_advanced/js/manifest.json +1450 -0
- package/src/components/banner_basic/css/component.scss +52 -0
- package/src/components/banner_basic/html/component.hbs +130 -0
- package/src/components/banner_basic/js/global.js +6 -0
- package/src/components/banner_basic/js/manifest.json +151 -0
- package/src/components/banner_intermediate/css/component.scss +276 -0
- package/src/components/banner_intermediate/html/component.hbs +165 -0
- package/src/components/banner_intermediate/js/global.js +6 -0
- package/src/components/banner_intermediate/js/manifest.json +248 -0
- package/src/components/body/css/component.scss +16 -0
- package/src/components/body/html/component.hbs +5 -0
- package/src/components/body/js/manifest.json +46 -0
- package/src/components/breadcrumbs/css/component.scss +236 -0
- package/src/components/breadcrumbs/html/component.hbs +29 -0
- package/src/components/breadcrumbs/js/manifest.json +9 -0
- package/src/components/callout/css/component.scss +146 -0
- package/src/components/callout/html/component.hbs +28 -0
- package/src/components/callout/js/manifest.json +121 -0
- package/src/components/card_feature/css/component.scss +224 -0
- package/src/components/card_feature/html/component.hbs +129 -0
- package/src/components/card_feature/js/manifest.json +1390 -0
- package/src/components/card_multi_action/css/component.scss +229 -0
- package/src/components/card_multi_action/html/component.hbs +192 -0
- package/src/components/card_multi_action/js/manifest.json +1314 -0
- package/src/components/card_no_action/css/component.scss +551 -0
- package/src/components/card_no_action/html/component.hbs +127 -0
- package/src/components/card_no_action/js/global.js +6 -0
- package/src/components/card_no_action/js/manifest.json +1264 -0
- package/src/components/card_single_action/css/component.scss +164 -0
- package/src/components/card_single_action/html/component.hbs +161 -0
- package/src/components/card_single_action/js/manifest.json +1273 -0
- package/src/components/code/css/component.scss +355 -0
- package/src/components/code/html/component.hbs +84 -0
- package/src/components/code/js/global.js +160 -0
- package/src/components/code/js/manifest.json +112 -0
- package/src/components/footer/css/component.scss +437 -0
- package/src/components/footer/html/component.hbs +177 -0
- package/src/components/footer/js/manifest.json +9 -0
- package/src/components/global_alert/css/component.scss +169 -0
- package/src/components/global_alert/html/component.hbs +38 -0
- package/src/components/global_alert/js/global.js +39 -0
- package/src/components/global_alert/js/manifest.json +9 -0
- package/src/components/header/css/component.scss +697 -0
- package/src/components/header/html/component.hbs +186 -0
- package/src/components/header/js/global.js +188 -0
- package/src/components/header/js/manifest.json +11 -0
- package/src/components/horizontal_rule/css/component.scss +37 -0
- package/src/components/horizontal_rule/html/component.hbs +6 -0
- package/src/components/horizontal_rule/js/manifest.json +69 -0
- package/src/components/in_page_navigation/css/component.scss +54 -0
- package/src/components/in_page_navigation/html/component.hbs +17 -0
- package/src/components/in_page_navigation/js/global.js +51 -0
- package/src/components/in_page_navigation/js/manifest.json +35 -0
- package/src/components/internal_navigation/css/component.scss +437 -0
- package/src/components/internal_navigation/html/component.hbs +57 -0
- package/src/components/internal_navigation/js/manifest.json +11 -0
- package/src/components/left_hand_navigation/css/component.scss +280 -0
- package/src/components/left_hand_navigation/html/component.hbs +77 -0
- package/src/components/left_hand_navigation/js/global.js +36 -0
- package/src/components/left_hand_navigation/js/manifest.json +40 -0
- package/src/components/main_navigation/css/component.scss +706 -0
- package/src/components/main_navigation/html/component.hbs +87 -0
- package/src/components/main_navigation/js/global.js +373 -0
- package/src/components/main_navigation/js/manifest.json +11 -0
- package/src/components/mega_main_navigation/css/component.scss +535 -0
- package/src/components/mega_main_navigation/html/component.hbs +157 -0
- package/src/components/mega_main_navigation/js/global.js +170 -0
- package/src/components/mega_main_navigation/js/manifest.json +9 -0
- package/src/components/multi_column/css/component.scss +11 -0
- package/src/components/multi_column/html/component.hbs +98 -0
- package/src/components/multi_column/js/manifest.json +233 -0
- package/src/components/page_alert/css/component.scss +132 -0
- package/src/components/page_alert/html/component.hbs +26 -0
- package/src/components/page_alert/js/manifest.json +63 -0
- package/src/components/pagination/css/component.scss +196 -0
- package/src/components/pagination/html/component.hbs +41 -0
- package/src/components/pagination/html/default.html +30 -0
- package/src/components/pagination/js/manifest.json +42 -0
- package/src/components/search_box/css/component.scss +48 -0
- package/src/components/search_box/html/component.html +11 -0
- package/src/components/search_box/js/manifest.json +73 -0
- package/src/components/updated_date/css/component.scss +0 -0
- package/src/components/updated_date/html/component.hbs +31 -0
- package/src/components/updated_date/js/manifest.json +9 -0
- package/src/components/widgets/css/component.scss +82 -0
- package/src/components/widgets/html/component.hbs +19 -0
- package/src/components/widgets/html/default.html +4 -0
- package/src/components/widgets/js/current.json +483 -0
- package/src/components/widgets/js/manifest.json +9 -0
- package/src/components/widgets/js/site.json +358 -0
- package/src/data/current.json +522 -0
- package/src/data/current_admin.json +305 -0
- package/src/data/model_component.js +14 -0
- package/src/data/site.json +762 -0
- package/src/externals/componentPreview.js +101 -0
- package/src/externals/dsComponentLoader.js +410 -0
- package/src/externals/esri-leaflet-vector.js +5 -0
- package/src/externals/esri-leaflet.js +12 -0
- package/src/externals/fb-handlebars.min.js +29 -0
- package/src/externals/fb-typeahead.bundle.min.js +6 -0
- package/src/externals/funnelback.autocompletion-2.6.0.js +678 -0
- package/src/externals/getPagination.js +62 -0
- package/src/externals/handlebars.min-v4.7.6.js +29 -0
- package/src/externals/leaflet.js +6 -0
- package/src/externals/populateDatastoreSim.js +381 -0
- package/src/externals/tinymce_classes.css +62 -0
- package/src/helpers/Handlebars/appendIf.js +6 -0
- package/src/helpers/Handlebars/arrayLength.js +3 -0
- package/src/helpers/Handlebars/arrayWith.js +13 -0
- package/src/helpers/Handlebars/capitaliseFirst.js +8 -0
- package/src/helpers/Handlebars/charMax.js +8 -0
- package/src/helpers/Handlebars/checkIf.js +20 -0
- package/src/helpers/Handlebars/columnWidth.js +39 -0
- package/src/helpers/Handlebars/contains.js +7 -0
- package/src/helpers/Handlebars/createMap.js +19 -0
- package/src/helpers/Handlebars/dsMapFromID.js +8 -0
- package/src/helpers/Handlebars/dsMapFromProp.js +8 -0
- package/src/helpers/Handlebars/eachByName.js +18 -0
- package/src/helpers/Handlebars/eachDS.js +7 -0
- package/src/helpers/Handlebars/eachFrom.js +13 -0
- package/src/helpers/Handlebars/eachUpTo.js +8 -0
- package/src/helpers/Handlebars/eachWhen.js +33 -0
- package/src/helpers/Handlebars/formatDate.js +62 -0
- package/src/helpers/Handlebars/generateDates.js +74 -0
- package/src/helpers/Handlebars/getDistance.js +40 -0
- package/src/helpers/Handlebars/getObject.js +3 -0
- package/src/helpers/Handlebars/getParamaterByName.js +11 -0
- package/src/helpers/Handlebars/getPossibleValues.js +13 -0
- package/src/helpers/Handlebars/getProp.js +3 -0
- package/src/helpers/Handlebars/getTags.js +20 -0
- package/src/helpers/Handlebars/getTitle.js +4 -0
- package/src/helpers/Handlebars/ifAny.js +9 -0
- package/src/helpers/Handlebars/ifArray.js +3 -0
- package/src/helpers/Handlebars/ifCond.js +31 -0
- package/src/helpers/Handlebars/ifEqualsOrChained.js +12 -0
- package/src/helpers/Handlebars/ifProp.js +3 -0
- package/src/helpers/Handlebars/if_eq.js +9 -0
- package/src/helpers/Handlebars/inArray.js +8 -0
- package/src/helpers/Handlebars/isPage.js +7 -0
- package/src/helpers/Handlebars/itemAt.js +11 -0
- package/src/helpers/Handlebars/jsonParse.js +8 -0
- package/src/helpers/Handlebars/jsonStringify.js +3 -0
- package/src/helpers/Handlebars/listAZ.js +51 -0
- package/src/helpers/Handlebars/listAZOptions.js +34 -0
- package/src/helpers/Handlebars/listByClosest.js +60 -0
- package/src/helpers/Handlebars/listByClosestWithOffset.js +63 -0
- package/src/helpers/Handlebars/math.js +11 -0
- package/src/helpers/Handlebars/newLineToBreak.js +6 -0
- package/src/helpers/Handlebars/nonBreakingSpaces.js +6 -0
- package/src/helpers/Handlebars/objectFromSelect.js +21 -0
- package/src/helpers/Handlebars/partialReplace.js +9 -0
- package/src/helpers/Handlebars/printAccordion.js +24 -0
- package/src/helpers/Handlebars/replace.js +8 -0
- package/src/helpers/Handlebars/replaceMany.js +5 -0
- package/src/helpers/Handlebars/sizeFormat.js +11 -0
- package/src/helpers/Handlebars/split.js +6 -0
- package/src/helpers/Handlebars/toUpperCase.js +7 -0
- package/src/helpers/Handlebars/urldecode.js +3 -0
- package/src/helpers/Handlebars/urlencode.js +3 -0
- package/src/helpers/Handlebars/withinObject.js +13 -0
- package/src/html/component-abstract.html +86 -0
- package/src/html/component-accordion.html +87 -0
- package/src/html/component-banner.html +84 -0
- package/src/html/component-banner_advanced.html +97 -0
- package/src/html/component-banner_basic.html +163 -0
- package/src/html/component-banner_intermediate.html +91 -0
- package/src/html/component-body.html +116 -0
- package/src/html/component-breadcrumbs.html +88 -0
- package/src/html/component-btn.html +117 -0
- package/src/html/component-callout.html +86 -0
- package/src/html/component-card_feature.html +631 -0
- package/src/html/component-card_multi_action.html +793 -0
- package/src/html/component-card_no_action.html +521 -0
- package/src/html/component-card_single_action.html +631 -0
- package/src/html/component-code.html +84 -0
- package/src/html/component-footer.html +87 -0
- package/src/html/component-forms.html +585 -0
- package/src/html/component-global-elements.html +531 -0
- package/src/html/component-global_alert.html +87 -0
- package/src/html/component-header.html +88 -0
- package/src/html/component-in_page_navigation.html +109 -0
- package/src/html/component-internal_navigation.html +87 -0
- package/src/html/component-left_hand_navigation.html +85 -0
- package/src/html/component-main_navigation.html +87 -0
- package/src/html/component-mega_main_navigation.html +88 -0
- package/src/html/component-multi_column.html +86 -0
- package/src/html/component-page_alert.html +86 -0
- package/src/html/component-pagination.html +86 -0
- package/src/html/component-tag_list.html +340 -0
- package/src/html/component-updated_date.html +88 -0
- package/src/html/component-widgets.html +90 -0
- package/src/html/components.html +136 -0
- package/src/html/home.html +126 -0
- package/src/html/index.html +142 -0
- package/src/html/inner-with-nav.html +1126 -0
- package/src/html/inner.html +107 -0
- package/src/index.js +12 -0
- package/src/styles/global.scss +120 -0
- package/src/styles/imports/figma.scss +0 -0
- package/src/styles/imports/functions.scss +519 -0
- package/src/styles/imports/mixins.scss +658 -0
- package/src/styles/imports/placeholders.scss +68 -0
- package/src/styles/imports/utilities.scss +185 -0
- package/src/styles/imports/variables.scss +484 -0
- package/src/styles/postcss.config.js +4 -0
- package/webpack/JsonMergePlugin.js +35 -0
- package/webpack/PrecompilePlugin.js +369 -0
- package/webpack/webpack.common.js +151 -0
- package/webpack/webpack.dev.js +54 -0
- package/webpack/webpack.prod.js +70 -0
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
2
|
+
// Link List
|
|
3
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
.qld__link-columns {
|
|
6
|
+
// display: block;
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-wrap: wrap;
|
|
9
|
+
list-style-type: none;
|
|
10
|
+
padding: 0;
|
|
11
|
+
@include QLD-fontgrid(sm);
|
|
12
|
+
font-weight: bold;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
|
|
15
|
+
* + &{
|
|
16
|
+
@include QLD-space(margin, 1.5unit 0);
|
|
17
|
+
}
|
|
18
|
+
&:last-child{
|
|
19
|
+
@include QLD-space(margin-bottom, 0);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
> li{
|
|
23
|
+
@include QLD-space(padding,1unit .25unit 1unit .25unit );
|
|
24
|
+
box-shadow: 0 $QLD-border-width-thin 0 var(--QLD-color-light-border);
|
|
25
|
+
display: flex;
|
|
26
|
+
justify-content: space-between;
|
|
27
|
+
position: relative;
|
|
28
|
+
flex: 0 0 100%;
|
|
29
|
+
|
|
30
|
+
a{
|
|
31
|
+
text-decoration: none;
|
|
32
|
+
|
|
33
|
+
&:before {
|
|
34
|
+
content: "";
|
|
35
|
+
position: absolute;
|
|
36
|
+
top: 0;
|
|
37
|
+
right: 0;
|
|
38
|
+
bottom: 0;
|
|
39
|
+
left: 0;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&::after {
|
|
44
|
+
@include QLD-space(width, 1.25unit);
|
|
45
|
+
@include QLD-space(height, 1.25unit);
|
|
46
|
+
@include QLD-space( margin, 0 0.5unit 0 0.5unit );
|
|
47
|
+
content: "";
|
|
48
|
+
flex: 0 0 auto;
|
|
49
|
+
transition: margin 0.2s ease;
|
|
50
|
+
mask-image: QLD-svguri($QLD-icon-arrow-right) ;
|
|
51
|
+
mask-repeat: no-repeat;
|
|
52
|
+
mask-position: center;
|
|
53
|
+
background-color: var(--QLD-color-light-alt-button);
|
|
54
|
+
|
|
55
|
+
.ie8 &,
|
|
56
|
+
.lt-ie8 & {
|
|
57
|
+
content: " → ";
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
&:hover{
|
|
62
|
+
a{
|
|
63
|
+
color: var(--QLD-color-light-link);
|
|
64
|
+
text-decoration: underline;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&::after{
|
|
68
|
+
@include QLD-space(margin, 0 0 0 1unit);
|
|
69
|
+
background-color: var(--QLD-color-light-alt-button__hover);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&.qld__link-columns__all-link {
|
|
74
|
+
@include QLD-fontgrid(sm);
|
|
75
|
+
@include QLD-space(font-size, 1unit);
|
|
76
|
+
font-weight: bold;
|
|
77
|
+
justify-content: flex-end;
|
|
78
|
+
box-shadow: inset 0 0 -$QLD-border-width-thin 0 transparent;
|
|
79
|
+
flex: 0 0 100% !important;
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
&::after {
|
|
83
|
+
display: none;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
@include QLD-media(lg) {
|
|
88
|
+
&.qld__link-columns--2-col{
|
|
89
|
+
@include QLD-space(column-gap, 2unit);
|
|
90
|
+
|
|
91
|
+
> li{
|
|
92
|
+
flex: 0 0 calc(50% - 16px);
|
|
93
|
+
align-self: flex-start;
|
|
94
|
+
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
a {
|
|
98
|
+
break-inside: avoid;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.qld__link-columns--3-col {
|
|
103
|
+
@include QLD-space(column-gap, 2unit);
|
|
104
|
+
column-count: 3;
|
|
105
|
+
|
|
106
|
+
> li{
|
|
107
|
+
flex: 0 0 calc(33.22% - 22px);
|
|
108
|
+
align-self: flex-start;
|
|
109
|
+
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
a {
|
|
113
|
+
break-inside: avoid;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
.qld__body--alt &{
|
|
120
|
+
> li{
|
|
121
|
+
box-shadow:0 $QLD-border-width-thin 0 var(--QLD-color-light-alt-border);
|
|
122
|
+
|
|
123
|
+
&.qld__link-columns__all-link {
|
|
124
|
+
box-shadow:0 $QLD-border-width-thin 0 transparent;
|
|
125
|
+
|
|
126
|
+
&::after {
|
|
127
|
+
display: none;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.qld__body--dark &,
|
|
134
|
+
.qld__main-nav--dark &{
|
|
135
|
+
> li{
|
|
136
|
+
box-shadow:0 $QLD-border-width-thin 0 var(--QLD-color-dark-border);
|
|
137
|
+
&:hover{
|
|
138
|
+
&::after{
|
|
139
|
+
background-color: var(--QLD-color-dark-alt-button__hover);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&::after{
|
|
144
|
+
background-color: var(--QLD-color-dark-alt-button);
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
&.qld__link-columns__all-link {
|
|
150
|
+
box-shadow:0 $QLD-border-width-thin 0 transparent;
|
|
151
|
+
|
|
152
|
+
&::after {
|
|
153
|
+
display: none;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.qld__body--dark-alt &,
|
|
160
|
+
.qld__main-nav--dark-alt &{
|
|
161
|
+
> li{
|
|
162
|
+
box-shadow:0 $QLD-border-width-thin 0 var(--QLD-color-dark-alt-border);
|
|
163
|
+
|
|
164
|
+
&:hover{
|
|
165
|
+
&::after{
|
|
166
|
+
background-color: var(--QLD-color-dark-alt-button__hover);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
&::after{
|
|
171
|
+
background-color: var(--QLD-color-dark-alt-button);
|
|
172
|
+
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
&.qld__link-columns__all-link {
|
|
176
|
+
box-shadow:0 $QLD-border-width-thin 0 transparent;
|
|
177
|
+
|
|
178
|
+
&::after {
|
|
179
|
+
display: none;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.qld__body {
|
|
187
|
+
h1 + .qld__link-columns,
|
|
188
|
+
h2 + .qld__link-columns,
|
|
189
|
+
h3 + .qld__link-columns,
|
|
190
|
+
h4 + .qld__link-columns,
|
|
191
|
+
h5 + .qld__link-columns {
|
|
192
|
+
@include QLD-space(margin-top, 1.5unit);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
2
|
+
// Link List
|
|
3
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
.qld__link-list {
|
|
6
|
+
@include QLD-fontgrid( sm );
|
|
7
|
+
display: block;
|
|
8
|
+
list-style-type: none;
|
|
9
|
+
margin: 0;
|
|
10
|
+
@include QLD-space( padding, 0.25unit 0 );
|
|
11
|
+
|
|
12
|
+
.qld__body & {
|
|
13
|
+
margin: 0;
|
|
14
|
+
@include QLD-space( padding, 0.25unit 0 );
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
> li {
|
|
20
|
+
display: block;
|
|
21
|
+
@include QLD-space( margin, 0.25unit);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.qld__link-list--inline {
|
|
25
|
+
display: inline-block;
|
|
26
|
+
|
|
27
|
+
> li {
|
|
28
|
+
display: inline-block;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.qld__body{
|
|
34
|
+
* + .qld__link-list {
|
|
35
|
+
@include QLD-space(margin-top, 2unit);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
2
|
+
// .qld__modal
|
|
3
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
.qld__modal {
|
|
6
|
+
position: relative;
|
|
7
|
+
display: none;
|
|
8
|
+
|
|
9
|
+
&.active {
|
|
10
|
+
display: block;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.qld__modal__underlay {
|
|
14
|
+
position: fixed;
|
|
15
|
+
top: 0;
|
|
16
|
+
right: 0;
|
|
17
|
+
bottom: 0;
|
|
18
|
+
left: 0;
|
|
19
|
+
background-color: rgba(20, 20, 20, 0.4);
|
|
20
|
+
z-index: 1;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&__body__content{
|
|
24
|
+
@include QLD-space(padding, 1.5unit 0);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.qld__services-modal__set-location, &.qld__services-modal__update-location {
|
|
28
|
+
.qld__modal__body {
|
|
29
|
+
min-width: pxToRem(360);
|
|
30
|
+
|
|
31
|
+
@include QLD-media(md) {
|
|
32
|
+
min-width: pxToRem(654);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// .qld__search {
|
|
36
|
+
|
|
37
|
+
// .qld__btn {
|
|
38
|
+
// min-width: auto;
|
|
39
|
+
// @include QLD-space( padding-left, 2px );
|
|
40
|
+
// @include QLD-space( padding-right, 2px );
|
|
41
|
+
|
|
42
|
+
// @include QLD-media(md) {
|
|
43
|
+
// min-width: pxToRem(108);
|
|
44
|
+
// @include QLD-space( padding-left, 1unit );
|
|
45
|
+
// @include QLD-space( padding-right, 1unit );
|
|
46
|
+
// }
|
|
47
|
+
// }
|
|
48
|
+
// }
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.qld__modal__body {
|
|
53
|
+
min-width: pxToRem(360);
|
|
54
|
+
max-width: pxToRem(654);
|
|
55
|
+
position: fixed;
|
|
56
|
+
top: 50%;
|
|
57
|
+
left: 50%;
|
|
58
|
+
transform: translate(-50%, -100%);
|
|
59
|
+
background-color: white;
|
|
60
|
+
padding: pxToRem(30) pxToRem(20);
|
|
61
|
+
border: 2px solid var(--QLD-color-light-border);
|
|
62
|
+
@include sq-border-radius(4px);
|
|
63
|
+
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
64
|
+
z-index: 101;
|
|
65
|
+
|
|
66
|
+
@include QLD-media(md) {
|
|
67
|
+
padding: pxToRem(40) pxToRem(45);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.qld__modal__body__header {
|
|
71
|
+
display: flex;
|
|
72
|
+
justify-content: space-between;
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
}
|
|
76
|
+
.qld__modal__close {
|
|
77
|
+
position: absolute;
|
|
78
|
+
top: 1rem;
|
|
79
|
+
right: 1rem;
|
|
80
|
+
background-color: transparent;
|
|
81
|
+
box-shadow: none;
|
|
82
|
+
color: var(--QLD-color-light-text);
|
|
83
|
+
border: 0;
|
|
84
|
+
|
|
85
|
+
// padding: 0;
|
|
86
|
+
// margin: 5px 0 0 0;
|
|
87
|
+
// width: pxToRem(17);
|
|
88
|
+
// height: pxToRem(20);
|
|
89
|
+
min-width: auto;
|
|
90
|
+
line-height: 0;
|
|
91
|
+
|
|
92
|
+
svg,
|
|
93
|
+
i {
|
|
94
|
+
color: var(--QLD-color-light-text);
|
|
95
|
+
font-size: 1.5rem;
|
|
96
|
+
}
|
|
97
|
+
&:hover{
|
|
98
|
+
background-color: var(--QLD-color-light-button__hover);
|
|
99
|
+
svg,
|
|
100
|
+
i {
|
|
101
|
+
color: var(--QLD-color-dark-text);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// .qld__search {
|
|
107
|
+
|
|
108
|
+
// .qld__btn {
|
|
109
|
+
// span {
|
|
110
|
+
// display: none;
|
|
111
|
+
// }
|
|
112
|
+
|
|
113
|
+
// @include QLD-media(md) {
|
|
114
|
+
// min-width: pxToRem(108);
|
|
115
|
+
|
|
116
|
+
// span {
|
|
117
|
+
// display: inline-block;
|
|
118
|
+
// }
|
|
119
|
+
|
|
120
|
+
// svg {
|
|
121
|
+
// display: none;
|
|
122
|
+
// }
|
|
123
|
+
// }
|
|
124
|
+
// }
|
|
125
|
+
// }
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
.qld__modal__body__controls {
|
|
129
|
+
// margin-top: pxToRem(20);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// .qld__btn {
|
|
133
|
+
// margin-right: pxToRem(10);
|
|
134
|
+
// margin-bottom: 0;
|
|
135
|
+
|
|
136
|
+
// @include QLD-media(md) {
|
|
137
|
+
// min-width: pxToRem(118);
|
|
138
|
+
// }
|
|
139
|
+
// }
|
|
140
|
+
|
|
141
|
+
// .qld__cta-btn {
|
|
142
|
+
// border-color: var(--QLD-color-dark-alt-button);
|
|
143
|
+
// background-color: white;
|
|
144
|
+
// color: var(--QLD-color-light-text);
|
|
145
|
+
|
|
146
|
+
// &:not(:disabled) {
|
|
147
|
+
// &:hover{
|
|
148
|
+
// background-color: var(--QLD-color-dark-alt-button);
|
|
149
|
+
// border-color: var(--QLD-color-dark-alt-button);
|
|
150
|
+
// color: var(--QLD-color-light-text);
|
|
151
|
+
// }
|
|
152
|
+
// }
|
|
153
|
+
// }
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
&.qld__modal--small {
|
|
157
|
+
.qld__modal__body {
|
|
158
|
+
min-width: pxToRem(360);
|
|
159
|
+
max-width: pxToRem(360);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.qld__services-modal__content {
|
|
164
|
+
max-width: pxToRem(343);
|
|
165
|
+
|
|
166
|
+
.qld__modal__body__controls {
|
|
167
|
+
text-align: center;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// .qld__modal__close {
|
|
172
|
+
// position: fixed;
|
|
173
|
+
// top: pxToRem(20);
|
|
174
|
+
// right: pxToRem(20);
|
|
175
|
+
// z-index: 1;
|
|
176
|
+
// font-size: pxToRem(30);
|
|
177
|
+
// box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
178
|
+
// padding: 0 pxToRem(10);
|
|
179
|
+
// width: auto;
|
|
180
|
+
// }
|
|
181
|
+
|
|
182
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
2
|
+
// Slick Slider
|
|
3
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
4
|
+
|
|
5
|
+
.slick-slider{
|
|
6
|
+
.slick-track{
|
|
7
|
+
display: flex !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.slick-slide{
|
|
11
|
+
height: inherit;
|
|
12
|
+
|
|
13
|
+
> div{
|
|
14
|
+
height: 100%;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
li{
|
|
18
|
+
height: 100%;
|
|
19
|
+
}
|
|
20
|
+
.qld__card{
|
|
21
|
+
height: 100%;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
}
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
2
|
+
// table module
|
|
3
|
+
// Used to display tabular data
|
|
4
|
+
//
|
|
5
|
+
// Content:
|
|
6
|
+
// - sass-versioning
|
|
7
|
+
// - globals
|
|
8
|
+
//--------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.qld__table {
|
|
11
|
+
border-collapse: collapse;
|
|
12
|
+
border-spacing: 0;
|
|
13
|
+
|
|
14
|
+
.qld__table__caption,
|
|
15
|
+
caption {
|
|
16
|
+
@include QLD-fontgrid( md, heading);
|
|
17
|
+
font-weight: bold;
|
|
18
|
+
text-align: left;
|
|
19
|
+
display: table-caption;
|
|
20
|
+
@include QLD-space( padding-bottom, 0.5unit);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.qld__table__head,
|
|
24
|
+
thead{
|
|
25
|
+
display: table-header-group;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.qld__table__header,
|
|
29
|
+
th{
|
|
30
|
+
@include QLD-standard-space(padding, 5 4 5 4);
|
|
31
|
+
box-shadow: inset 0 0 -$QLD-border-width-default 0 var(--QLD-color-light-designAccent);
|
|
32
|
+
color: var(--QLD-color-light-heading);
|
|
33
|
+
font-weight: bold;
|
|
34
|
+
@include QLD-fontgrid( md, heading);
|
|
35
|
+
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.qld__table__cell,
|
|
39
|
+
td{
|
|
40
|
+
@include QLD-standard-space(padding, 3);
|
|
41
|
+
box-shadow: inset 0 0 -$QLD-border-width-thin 0 var(--QLD-color-light-border);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.qld__table__row,
|
|
45
|
+
tr {
|
|
46
|
+
display: table-row;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
//Dark and Alt dark styles
|
|
50
|
+
.qld__body--dark &,
|
|
51
|
+
.qld__body--dark-alt &{
|
|
52
|
+
|
|
53
|
+
.qld__table__header,
|
|
54
|
+
th{
|
|
55
|
+
color: var(--QLD-color-dark-heading);
|
|
56
|
+
box-shadow: inset 0 0 -$QLD-border-width-default 0 var(--QLD-color-dark-border);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.qld__table__cell,
|
|
60
|
+
td{
|
|
61
|
+
box-shadow: inset 0 0 -$QLD-border-width-thin 0 var(--QLD-color-dark-border);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.qld__table.qld__table--striped{
|
|
67
|
+
|
|
68
|
+
.qld__table__body,
|
|
69
|
+
tbody{
|
|
70
|
+
.qld__table__row:nth-last-child(odd),
|
|
71
|
+
tr:nth-last-child(odd) {
|
|
72
|
+
background-color: var(--QLD-color-light-background__shade);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
//Dark and Alt dark styles
|
|
77
|
+
.qld__body--dark &,
|
|
78
|
+
.qld__body--dark-alt &{
|
|
79
|
+
.qld__table__body,
|
|
80
|
+
tbody{
|
|
81
|
+
.qld__table__row:nth-last-child(odd),
|
|
82
|
+
tr:nth-last-child(odd) {
|
|
83
|
+
background-color: var(--QLD-color-dark-background__shade);
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
// .qld__table {
|
|
93
|
+
// @include QLD-fontgrid( sm, 'default');
|
|
94
|
+
// font-family: $QLD-font;
|
|
95
|
+
// width: 100%;
|
|
96
|
+
// border-collapse: collapse;
|
|
97
|
+
// border-spacing: 0;
|
|
98
|
+
|
|
99
|
+
// .qld__table__head {
|
|
100
|
+
// display: table-header-group;
|
|
101
|
+
// @include QLD-space( 'border-bottom', 0.25unit solid var(--QLD-color-light-designAccent));
|
|
102
|
+
|
|
103
|
+
// .qld__table__header {
|
|
104
|
+
// text-align: left;
|
|
105
|
+
// @include QLD-space( padding, 0.75unit);
|
|
106
|
+
|
|
107
|
+
// // header widths
|
|
108
|
+
// &.qld__table__header--width-10 {
|
|
109
|
+
// width: 10%;
|
|
110
|
+
// }
|
|
111
|
+
|
|
112
|
+
// &.qld__table__header--width-20 {
|
|
113
|
+
// width: 20%;
|
|
114
|
+
// }
|
|
115
|
+
|
|
116
|
+
// &.qld__table__header--width-25 {
|
|
117
|
+
// width: 25%;
|
|
118
|
+
// }
|
|
119
|
+
|
|
120
|
+
// &.qld__table__header--width-33 {
|
|
121
|
+
// width: 33%;
|
|
122
|
+
// }
|
|
123
|
+
|
|
124
|
+
// &.qld__table__header--width-50 {
|
|
125
|
+
// width: 50%;
|
|
126
|
+
// }
|
|
127
|
+
|
|
128
|
+
// &.qld__table__header--width-75 {
|
|
129
|
+
// width: 75%;
|
|
130
|
+
// }
|
|
131
|
+
|
|
132
|
+
// &.qld__table__header--numeric {
|
|
133
|
+
// text-align: right;
|
|
134
|
+
// }
|
|
135
|
+
|
|
136
|
+
// &:focus {
|
|
137
|
+
// outline: 3px solid var(--QLD-color-light-focus);
|
|
138
|
+
// }
|
|
139
|
+
// }
|
|
140
|
+
// }
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
// .qld__table__cell {
|
|
144
|
+
// @include QLD-space( padding, 0.75unit);
|
|
145
|
+
// text-align: left;
|
|
146
|
+
// border-bottom: 1px solid var(--QLD-color-light-designAccent);
|
|
147
|
+
|
|
148
|
+
// &:focus {
|
|
149
|
+
// outline: 3px solid var(--QLD-color-light-focus);
|
|
150
|
+
// }
|
|
151
|
+
|
|
152
|
+
// //numeric cells should be aligned right and have monospaced digits
|
|
153
|
+
// &.qld__table__cell--numeric {
|
|
154
|
+
// text-align: right;
|
|
155
|
+
// font-variant: tabular-nums;
|
|
156
|
+
// }
|
|
157
|
+
// }
|
|
158
|
+
|
|
159
|
+
// &.qld__table--striped .qld__table__body {
|
|
160
|
+
// .qld__table__row:nth-last-child( odd) {
|
|
161
|
+
// background-color: var(--QLD-color-light-background__shade);
|
|
162
|
+
// }
|
|
163
|
+
// }
|
|
164
|
+
|
|
165
|
+
// //Alternate themes
|
|
166
|
+
// .qld__body--alt &{
|
|
167
|
+
// &.qld__table--striped .qld__table__body {
|
|
168
|
+
// .qld__table__row:nth-last-child( odd) {
|
|
169
|
+
// background-color: var(--QLD-color-light-alt-background__shade);
|
|
170
|
+
// }
|
|
171
|
+
// }
|
|
172
|
+
// }
|
|
173
|
+
|
|
174
|
+
// .qld__body--dark &{
|
|
175
|
+
// .qld__table__head{
|
|
176
|
+
// @include QLD-space( 'border-bottom', 0.25unit solid var(--QLD-color-dark-designAccent));
|
|
177
|
+
// }
|
|
178
|
+
|
|
179
|
+
// .qld__table__header,
|
|
180
|
+
// .qld__table__cell{
|
|
181
|
+
// border-bottom: 1px solid var(--QLD-color-dark-designAccent);
|
|
182
|
+
// }
|
|
183
|
+
|
|
184
|
+
// &.qld__table--striped .qld__table__body {
|
|
185
|
+
// .qld__table__row:nth-last-child( odd) {
|
|
186
|
+
// background-color: var(--QLD-color-dark-background__shade);
|
|
187
|
+
// }
|
|
188
|
+
// }
|
|
189
|
+
// }
|
|
190
|
+
|
|
191
|
+
// .qld__body--dark-alt &{
|
|
192
|
+
// .qld__table__head{
|
|
193
|
+
// @include QLD-space( 'border-bottom', 0.25unit solid var(--QLD-color-dark-designAccent));
|
|
194
|
+
// }
|
|
195
|
+
|
|
196
|
+
// .qld__table__header,
|
|
197
|
+
// .qld__table__cell{
|
|
198
|
+
// border-bottom: 1px solid var(--QLD-color-dark-designAccent);
|
|
199
|
+
// }
|
|
200
|
+
|
|
201
|
+
// &.qld__table--striped .qld__table__body {
|
|
202
|
+
// .qld__table__row:nth-last-child( odd) {
|
|
203
|
+
// background-color: var(--QLD-color-dark-alt-background__shade);
|
|
204
|
+
// }
|
|
205
|
+
// }
|
|
206
|
+
// }
|
|
207
|
+
// }
|
|
208
|
+
|
|
209
|
+
// .qld__table__wrapper {
|
|
210
|
+
// overflow-x: auto;
|
|
211
|
+
// }
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
.qld__tab_panel {
|
|
2
|
+
&.qld__tab--closed,
|
|
3
|
+
&[hidden] {
|
|
4
|
+
display:none !important;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.qld__tab {
|
|
9
|
+
cursor:pointer;
|
|
10
|
+
background-color:var(--QLD-color-light-background) !important;
|
|
11
|
+
|
|
12
|
+
&[aria-selected="true"] {
|
|
13
|
+
background-color:var(--QLD-color-light-background__shade) !important;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.qld__content-tabs {
|
|
18
|
+
border-bottom: 1px solid var(--QLD-color-light-alt-border);
|
|
19
|
+
margin-top: pxToRem(30);
|
|
20
|
+
margin-bottom: pxToRem(24);
|
|
21
|
+
|
|
22
|
+
.qld__tab {
|
|
23
|
+
cursor:pointer;
|
|
24
|
+
background-color: transparent !important;
|
|
25
|
+
border: 0;
|
|
26
|
+
line-height: pxToRem(32);
|
|
27
|
+
padding: pxToRem(15) pxToRem(15);
|
|
28
|
+
|
|
29
|
+
&[aria-selected="true"] {
|
|
30
|
+
background-color: transparent !important;
|
|
31
|
+
font-weight: 700;
|
|
32
|
+
border-bottom: 8px solid var(--QLD-color-dark-alt-button);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:hover {
|
|
36
|
+
font-weight: 700;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.qld__tab + .qld__tab {
|
|
41
|
+
|
|
42
|
+
}
|
|
43
|
+
}
|