comand-component-library 3.3.86 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +856 -835
- package/dist/comand-component-library.umd.cjs +4 -4
- package/dist/media/images/slideshow-images/large/slide1.jpg +0 -0
- package/dist/media/images/slideshow-images/large/slide2.jpg +0 -0
- package/dist/media/images/slideshow-images/large/slide3.jpg +0 -0
- package/dist/media/images/slideshow-images/large/slide4.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide1.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide2.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide3.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide4.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide1.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide2.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide3.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide4.jpg +0 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/App.vue +680 -632
- package/src/assets/data/address-data.json +3 -3
- package/src/components/CmdAddressData.vue +90 -96
- package/src/components/CmdAddressDataItem.vue +60 -52
- package/src/components/CmdBankAccountData.vue +1 -1
- package/src/components/CmdBox.vue +10 -10
- package/src/components/CmdBoxWrapper.vue +8 -4
- package/src/components/CmdBreadcrumbs.vue +1 -1
- package/src/components/CmdCompanyLogo.vue +14 -11
- package/src/components/CmdContainer.vue +24 -0
- package/src/components/CmdCookieDisclaimer.vue +1 -1
- package/src/components/CmdCopyrightInformation.vue +1 -1
- package/src/components/CmdFancyBox.vue +9 -6
- package/src/components/CmdForm.vue +7 -1
- package/src/components/CmdFormElement.vue +21 -75
- package/src/components/CmdFormFilters.vue +2 -1
- package/src/components/CmdGoogleMaps.vue +1 -1
- package/src/components/CmdHeadline.vue +20 -25
- package/src/components/CmdIcon.vue +1 -1
- package/src/components/CmdImage.vue +1 -1
- package/src/components/CmdImageGallery.vue +1 -1
- package/src/components/CmdImageZoom.vue +1 -1
- package/src/components/CmdInputGroup.vue +2 -2
- package/src/components/CmdListOfLinks.vue +1 -1
- package/src/components/CmdListOfLinksItem.vue +0 -4
- package/src/components/CmdListOfRequirements.vue +10 -2
- package/src/components/CmdLoginForm.vue +1 -1
- package/src/components/CmdMainNavigation.vue +18 -17
- package/src/components/CmdMultistepFormProgressBar.vue +7 -3
- package/src/components/CmdNewsletterSubscription.vue +1 -8
- package/src/components/CmdOpeningHours.vue +1 -1
- package/src/components/CmdOpeningHoursItem.vue +1 -1
- package/src/components/CmdPagination.vue +21 -15
- package/src/components/CmdProgressBar.vue +1 -1
- package/src/components/CmdSidebar.vue +7 -1
- package/src/components/CmdSiteFooter.vue +14 -14
- package/src/components/CmdSiteHeader.vue +12 -29
- package/src/components/CmdSlideButton.vue +9 -7
- package/src/components/CmdSlideshow.vue +14 -12
- package/src/components/CmdSocialNetworks.vue +11 -4
- package/src/components/CmdSocialNetworksItem.vue +2 -7
- package/src/components/CmdSwitchLanguage.vue +1 -1
- package/src/components/CmdSystemMessage.vue +10 -6
- package/src/components/CmdTable.vue +72 -17
- package/src/components/CmdTabs.vue +2 -2
- package/src/components/CmdTextImageBlock.vue +1 -1
- package/src/components/CmdThumbnailScroller.vue +157 -152
- package/src/components/CmdToggleDarkMode.vue +1 -1
- package/src/components/CmdTooltip.vue +1 -1
- package/src/components/CmdUploadForm.vue +2 -2
- package/src/components/CmdWidthLimitationWrapper.vue +7 -3
- package/src/index.js +1 -0
- package/src/mixins/FieldValidation.js +0 -17
@@ -1,17 +1,17 @@
|
|
1
1
|
<template>
|
2
|
-
<div class="cmd-company-logo">
|
2
|
+
<div class="cmd-company-logo company-logo">
|
3
3
|
<router-link v-if="link?.type === 'router'" :to="link?.path" :title="link?.tooltip">
|
4
4
|
<!-- begin CmdImage -->
|
5
|
-
<CmdImage :image="image"
|
5
|
+
<CmdImage :image="image"/>
|
6
6
|
<!-- end CmdImage -->
|
7
7
|
</router-link>
|
8
8
|
<a v-else-if="link?.type === 'href'" :href="link?.path" :title="link?.tooltip">
|
9
9
|
<!-- begin CmdImage -->
|
10
|
-
<CmdImage :image="image"
|
10
|
+
<CmdImage :image="image"/>
|
11
11
|
<!-- end CmdImage -->
|
12
12
|
</a>
|
13
13
|
<!-- begin CmdImage -->
|
14
|
-
<CmdImage v-else :image="image"
|
14
|
+
<CmdImage v-else :image="image"/>
|
15
15
|
<!-- end CmdImage -->
|
16
16
|
</div>
|
17
17
|
</template>
|
@@ -92,8 +92,8 @@ export default {
|
|
92
92
|
this.prefersColorScheme = event.matches ? "light" : "dark"
|
93
93
|
},
|
94
94
|
observeDom(mutationList) {
|
95
|
-
for(let i = 0; i < mutationList.length; i++) {
|
96
|
-
if(mutationList[i].type === 'attributes') {
|
95
|
+
for (let i = 0; i < mutationList.length; i++) {
|
96
|
+
if (mutationList[i].type === 'attributes') {
|
97
97
|
this.toggleColorScheme()
|
98
98
|
break
|
99
99
|
}
|
@@ -105,7 +105,7 @@ export default {
|
|
105
105
|
toggleColorScheme() {
|
106
106
|
if (document.querySelector("html").classList.contains("light-mode")) {
|
107
107
|
this.prefersColorScheme = "light"
|
108
|
-
} else if(document.querySelector("html").classList.contains("dark-mode")) {
|
108
|
+
} else if (document.querySelector("html").classList.contains("dark-mode")) {
|
109
109
|
this.prefersColorScheme = "dark"
|
110
110
|
} else if (matchMedia("(prefers-color-scheme: light)").matches) {
|
111
111
|
this.prefersColorScheme = "light"
|
@@ -117,10 +117,8 @@ export default {
|
|
117
117
|
}
|
118
118
|
</script>
|
119
119
|
|
120
|
-
<style
|
120
|
+
<style>
|
121
121
|
/* begin cmd-company-logo ---------------------------------------------------------------------------------------- */
|
122
|
-
@import '../assets/styles/variables';
|
123
|
-
|
124
122
|
.cmd-company-logo {
|
125
123
|
img {
|
126
124
|
display: block;
|
@@ -134,9 +132,14 @@ export default {
|
|
134
132
|
border: 0;
|
135
133
|
}
|
136
134
|
}
|
135
|
+
}
|
136
|
+
</style>
|
137
137
|
|
138
|
+
<style lang="scss">
|
139
|
+
@import '../assets/styles/variables';
|
138
140
|
|
139
|
-
|
141
|
+
@media only screen and (max-width: $medium-max-width) {
|
142
|
+
.cmd-company-logo {
|
140
143
|
img {
|
141
144
|
max-width: 100%;
|
142
145
|
max-height: 7.5rem;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<template>
|
2
|
+
<div class="cmd-container">
|
3
|
+
<slot></slot>
|
4
|
+
</div>
|
5
|
+
</template>
|
6
|
+
|
7
|
+
<script>
|
8
|
+
import EditMode from "../mixins/EditMode.vue"
|
9
|
+
export default {
|
10
|
+
name: "CmdContainer",
|
11
|
+
mixins: [EditMode],
|
12
|
+
methods: {
|
13
|
+
addHandlerProvider() {
|
14
|
+
return ""
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
18
|
+
</script>
|
19
|
+
|
20
|
+
<style>
|
21
|
+
.cmd-container {
|
22
|
+
min-height: 5rem;
|
23
|
+
}
|
24
|
+
</style>
|
@@ -10,7 +10,7 @@ export default {
|
|
10
10
|
}
|
11
11
|
</script>
|
12
12
|
|
13
|
-
<style
|
13
|
+
<style>
|
14
14
|
/* begin cmd-copyright-information ---------------------------------------------------------------------------------------- */
|
15
15
|
.cmd-copyright-information {
|
16
16
|
background: var(--text-color);
|
@@ -179,7 +179,7 @@ const FancyBox = defineComponent({
|
|
179
179
|
*/
|
180
180
|
defaultAriaLabelText: {
|
181
181
|
type: String,
|
182
|
-
required:
|
182
|
+
required: false
|
183
183
|
},
|
184
184
|
/**
|
185
185
|
* set if content should be loaded by url
|
@@ -471,10 +471,8 @@ export {openFancyBox}
|
|
471
471
|
export default FancyBox
|
472
472
|
</script>
|
473
473
|
|
474
|
-
<style
|
474
|
+
<style>
|
475
475
|
/* begin cmd-fancybox ---------------------------------------------------------------------------------------- */
|
476
|
-
@import "../assets/styles/variables";
|
477
|
-
|
478
476
|
.cmd-fancybox {
|
479
477
|
z-index: 500;
|
480
478
|
flex-direction: column;
|
@@ -490,13 +488,13 @@ export default FancyBox
|
|
490
488
|
margin-top: calc(var(--default-margin) * 2)
|
491
489
|
}
|
492
490
|
|
493
|
-
|
491
|
+
/* detect open-attribute (will be added to dom automatically) */
|
494
492
|
&[open] {
|
495
493
|
display: flex;
|
496
494
|
}
|
497
495
|
|
498
496
|
&.show-overlay::backdrop {
|
499
|
-
--reduced-opacity: .75;
|
497
|
+
--reduced-opacity: .75; /* must be declared again, because ::backdrop does not allow the use of global variables */
|
500
498
|
background: rgba(0, 0, 0, var(--reduced-opacity));
|
501
499
|
}
|
502
500
|
|
@@ -619,7 +617,12 @@ export default FancyBox
|
|
619
617
|
}
|
620
618
|
}
|
621
619
|
}
|
620
|
+
}
|
621
|
+
</style>
|
622
622
|
|
623
|
+
<style lang="scss">
|
624
|
+
@import "../assets/styles/variables";
|
625
|
+
.cmd-fancybox {
|
623
626
|
@media only screen and (max-width: $medium-max-width) {
|
624
627
|
.outer-content-wrapper {
|
625
628
|
.content {
|
@@ -185,7 +185,8 @@ export default {
|
|
185
185
|
}
|
186
186
|
</script>
|
187
187
|
|
188
|
-
<style
|
188
|
+
<style>
|
189
|
+
/* begin cmd-form ---------------------------------------------------------------------------------------- */
|
189
190
|
.cmd-form {
|
190
191
|
&:not([data-use-validation="true"]) {
|
191
192
|
label.error :where(::placeholder, select option:first-child),
|
@@ -204,5 +205,10 @@ export default {
|
|
204
205
|
border-color: var(--error-color);
|
205
206
|
}
|
206
207
|
}
|
208
|
+
|
209
|
+
.button, .button:last-child {
|
210
|
+
margin-left: auto;
|
211
|
+
}
|
207
212
|
}
|
213
|
+
/* end cmd-form ---------------------------------------------------------------------------------------- */
|
208
214
|
</style>
|
@@ -8,11 +8,8 @@
|
|
8
8
|
{
|
9
9
|
disabled: $attrs.disabled,
|
10
10
|
inline : displayLabelInline,
|
11
|
-
checked: isChecked,
|
12
11
|
'toggle-switch': toggleSwitch,
|
13
12
|
colored: colored,
|
14
|
-
on: colored && isChecked,
|
15
|
-
off: colored && !isChecked,
|
16
13
|
'has-state': validationStatus
|
17
14
|
}
|
18
15
|
]"
|
@@ -43,7 +40,7 @@
|
|
43
40
|
/>
|
44
41
|
<!-- end CmdTooltipForInputElements -->
|
45
42
|
|
46
|
-
<a v-if="$attrs.required || inputRequirements.length"
|
43
|
+
<a v-if="($attrs.required || inputRequirements.length) && showStatusIcon"
|
47
44
|
href="#"
|
48
45
|
@click.prevent
|
49
46
|
:title="validationTooltip"
|
@@ -59,10 +56,7 @@
|
|
59
56
|
|
60
57
|
<span v-if="$attrs.type !== 'checkbox' && $attrs.type !== 'radio'" class="flex-container"><!-- container required to place inner icons correctly -->
|
61
58
|
<!-- begin CmdIcon (for icon inside field) -->
|
62
|
-
<CmdIcon
|
63
|
-
v-if="fieldIconClass"
|
64
|
-
class="place-inside"
|
65
|
-
:iconClass="fieldIconClass"
|
59
|
+
<CmdIcon v-if="fieldIconClass" class="place-inside" :iconClass="fieldIconClass"
|
66
60
|
/>
|
67
61
|
<!-- end CmdIcon (for icon inside field) -->
|
68
62
|
|
@@ -121,7 +115,7 @@
|
|
121
115
|
@blur="onBlur"
|
122
116
|
:checked="isChecked"
|
123
117
|
:value="inputValue"
|
124
|
-
:class="[inputClass, validationStatus, toggleSwitchIconClass, { 'replace-input-type': replaceInputType
|
118
|
+
:class="[inputClass, validationStatus, toggleSwitchIconClass, { 'replace-input-type': replaceInputType}]"
|
125
119
|
:id="htmlId"
|
126
120
|
:disabled="$attrs.disabled"
|
127
121
|
:aria-invalid="validationStatus === 'error'"
|
@@ -392,6 +386,13 @@ export default {
|
|
392
386
|
type: Array,
|
393
387
|
required: false
|
394
388
|
},
|
389
|
+
/**
|
390
|
+
* activate if interactive status-icon (to show requirements) should be shown above form-element
|
391
|
+
*/
|
392
|
+
showStatusIcon: {
|
393
|
+
type: Boolean,
|
394
|
+
default: true
|
395
|
+
},
|
395
396
|
/**
|
396
397
|
* native button
|
397
398
|
*/
|
@@ -842,9 +843,10 @@ export default {
|
|
842
843
|
}
|
843
844
|
</script>
|
844
845
|
|
845
|
-
<style
|
846
|
+
<style>
|
846
847
|
/* begin cmd-form-element ------------------------------------------------------------------------------------------ */
|
847
848
|
.cmd-form-element {
|
849
|
+
/* icon right aligned in input */
|
848
850
|
input + .place-inside {
|
849
851
|
left: auto;
|
850
852
|
right: .5rem
|
@@ -859,11 +861,17 @@ export default {
|
|
859
861
|
color: var(--status-color);
|
860
862
|
|
861
863
|
&.place-inside {
|
862
|
-
color: var(--
|
864
|
+
--status-color: var(--error-color);
|
863
865
|
}
|
864
866
|
}
|
865
867
|
}
|
866
868
|
|
869
|
+
:is(input[type="checkbox"], input[type="radio"]):checked {
|
870
|
+
~ .label-text span {
|
871
|
+
color: var(--hyperlink-color);
|
872
|
+
}
|
873
|
+
}
|
874
|
+
|
867
875
|
&.inline {
|
868
876
|
& > span {
|
869
877
|
& > a:not(.button) {
|
@@ -918,85 +926,23 @@ export default {
|
|
918
926
|
}
|
919
927
|
}
|
920
928
|
|
921
|
-
&.colored {
|
922
|
-
input {
|
923
|
-
border-color: var(--error-color);
|
924
|
-
|
925
|
-
&::after {
|
926
|
-
border-color: inherit;
|
927
|
-
}
|
928
|
-
}
|
929
|
-
|
930
|
-
&.on {
|
931
|
-
input {
|
932
|
-
border-color: var(--success-color);
|
933
|
-
|
934
|
-
&::after {
|
935
|
-
border-color: inherit;
|
936
|
-
background: var(--success-color);
|
937
|
-
}
|
938
|
-
}
|
939
|
-
}
|
940
|
-
}
|
941
|
-
|
942
929
|
.characters-left-wrapper {
|
943
930
|
margin-top: calc(var(--default-margin) / 2);
|
944
931
|
display: block;
|
945
932
|
|
946
933
|
span:not(:only-child):first-child {
|
947
934
|
margin-right: calc(var(--default-margin) / 2);
|
948
|
-
color: var(--text-color);
|
935
|
+
color: var(--color-scheme-text-color);
|
949
936
|
}
|
950
937
|
|
951
938
|
.characters-left {
|
952
|
-
color: var(--text-color);
|
939
|
+
color: var(--color-scheme-text-color);
|
953
940
|
|
954
941
|
&.error {
|
955
942
|
color: var(--error-color);
|
956
943
|
}
|
957
944
|
}
|
958
945
|
}
|
959
|
-
|
960
|
-
/* begin toggle-switch */
|
961
|
-
/* no cmd-prefix-styling (class based on frontend-framework) */
|
962
|
-
&.toggle-switch {
|
963
|
-
&.colored {
|
964
|
-
&.off {
|
965
|
-
.switch-label-wrapper {
|
966
|
-
border-color: var(--error-color);
|
967
|
-
|
968
|
-
span {
|
969
|
-
&.label-text {
|
970
|
-
color: var(--error-color);
|
971
|
-
|
972
|
-
&::before {
|
973
|
-
border-color: var(--error-color);
|
974
|
-
background-color: var(--pure-white);
|
975
|
-
}
|
976
|
-
}
|
977
|
-
}
|
978
|
-
}
|
979
|
-
}
|
980
|
-
|
981
|
-
&.on {
|
982
|
-
.switch-label-wrapper {
|
983
|
-
border-color: var(--success-color);
|
984
|
-
|
985
|
-
span {
|
986
|
-
&.label-text {
|
987
|
-
color: var(--success-color);
|
988
|
-
|
989
|
-
&::before {
|
990
|
-
border-color: var(--success-color);
|
991
|
-
background-color: var(--success-color);
|
992
|
-
}
|
993
|
-
}
|
994
|
-
}
|
995
|
-
}
|
996
|
-
}
|
997
|
-
}
|
998
|
-
}
|
999
|
-
/* end toggle-switch */
|
1000
946
|
}
|
1001
947
|
/* end cmd-form-element------------------------------------------------------------------------------------------ */
|
1002
948
|
</style>
|
@@ -105,10 +105,11 @@ export default {
|
|
105
105
|
}
|
106
106
|
</script>
|
107
107
|
|
108
|
-
<style
|
108
|
+
<style>
|
109
109
|
/* begin cmd-form-filters ------------------------------------------------------------------------------------------ */
|
110
110
|
.cmd-form-filters {
|
111
111
|
display: flex;
|
112
|
+
margin: 0;
|
112
113
|
|
113
114
|
li {
|
114
115
|
list-style-type: none;
|
@@ -80,11 +80,6 @@ import {buildComponentPath, findEditComponentWrapper, updateHandlerProvider} fro
|
|
80
80
|
export default {
|
81
81
|
name: "CmdHeadline",
|
82
82
|
mixins: [EditMode],
|
83
|
-
inject: {
|
84
|
-
editModeContext: {
|
85
|
-
default: null
|
86
|
-
}
|
87
|
-
},
|
88
83
|
data() {
|
89
84
|
return {
|
90
85
|
editableHeadlineText: null,
|
@@ -186,10 +181,8 @@ export default {
|
|
186
181
|
}
|
187
182
|
</script>
|
188
183
|
|
189
|
-
<style
|
184
|
+
<style>
|
190
185
|
/* begin cmd-headline ------------------------------------------------------------------------------------------ */
|
191
|
-
//@import '../assets/styles/variables';
|
192
|
-
|
193
186
|
.cmd-headline {
|
194
187
|
margin-bottom: var(--default-margin);
|
195
188
|
gap: calc(var(--default-gap) / 2);
|
@@ -215,28 +208,30 @@ export default {
|
|
215
208
|
align-items: center;
|
216
209
|
}
|
217
210
|
|
218
|
-
|
219
|
-
|
220
|
-
|
211
|
+
&.has-pre-headline-text {
|
212
|
+
&:has(h1) span[class*="icon"] {
|
213
|
+
font-size: calc(var(--headline-font-size-h1) * 1.6);
|
214
|
+
}
|
221
215
|
|
222
|
-
|
223
|
-
|
224
|
-
|
216
|
+
&:has(h2) span[class*="icon"] {
|
217
|
+
font-size: calc(var(--headline-font-size-h2) * 1.8);
|
218
|
+
}
|
225
219
|
|
226
|
-
|
227
|
-
|
228
|
-
|
220
|
+
&:has(h3) span[class*="icon"] {
|
221
|
+
font-size: calc(var(--headline-font-size-h3) * 1.9);
|
222
|
+
}
|
229
223
|
|
230
|
-
|
231
|
-
|
232
|
-
|
224
|
+
&:has(h4) span[class*="icon"] {
|
225
|
+
font-size: calc(var(--headline-font-size-h4) * 2);
|
226
|
+
}
|
233
227
|
|
234
|
-
|
235
|
-
|
236
|
-
|
228
|
+
&:has(h5) span[class*="icon"] {
|
229
|
+
font-size: calc(var(--headline-font-size-h5) * 2.1);
|
230
|
+
}
|
237
231
|
|
238
|
-
|
239
|
-
|
232
|
+
&:has(h6) span[class*="icon"] {
|
233
|
+
font-size: calc(var(--headline-font-size-h6) * 2.2);
|
234
|
+
}
|
240
235
|
}
|
241
236
|
|
242
237
|
&:has(h4, h5, h6) .pre-headline-text {
|
@@ -145,7 +145,7 @@ export default {
|
|
145
145
|
}
|
146
146
|
</script>
|
147
147
|
|
148
|
-
<style
|
148
|
+
<style>
|
149
149
|
/* begin cmd-image-gallery ---------------------------------------------------------------------------------------- */
|
150
150
|
.cmd-image-gallery {
|
151
151
|
> .cmd-headline, > input.edit-mode, > .edit-component-wrapper {
|
@@ -109,7 +109,7 @@ function clamp(value, min, max) {
|
|
109
109
|
}
|
110
110
|
</script>
|
111
111
|
|
112
|
-
<style
|
112
|
+
<style>
|
113
113
|
/* begin cmd-imagezoom ---------------------------------------------------------------------------------------- */
|
114
114
|
.cmd-imagezoom {
|
115
115
|
overflow: hidden;
|
@@ -265,7 +265,7 @@ export default {
|
|
265
265
|
}
|
266
266
|
</script>
|
267
267
|
|
268
|
-
<style
|
268
|
+
<style>
|
269
269
|
.cmd-input-group {
|
270
270
|
&.inline {
|
271
271
|
display: flex;
|
@@ -281,7 +281,7 @@ export default {
|
|
281
281
|
.label-text {
|
282
282
|
display: inline-flex;
|
283
283
|
|
284
|
-
> [class*="icon-"] {
|
284
|
+
> span + a [class*="icon-"] {
|
285
285
|
margin-left: calc(var(--default-margin) / 2);
|
286
286
|
}
|
287
287
|
}
|
@@ -150,12 +150,16 @@ export default {
|
|
150
150
|
}
|
151
151
|
</script>
|
152
152
|
|
153
|
-
<style
|
153
|
+
<style>
|
154
154
|
/* begin cmd-list-of-requirements ------------------------------------------------------------------------------------------ */
|
155
155
|
.cmd-list-of-requirements {
|
156
156
|
dl {
|
157
157
|
.error {
|
158
158
|
--status-color: var(--error-color);
|
159
|
+
|
160
|
+
[class*="icon-"] {
|
161
|
+
color: var(--status-color);
|
162
|
+
}
|
159
163
|
}
|
160
164
|
|
161
165
|
.warning {
|
@@ -163,7 +167,11 @@ export default {
|
|
163
167
|
}
|
164
168
|
|
165
169
|
.success {
|
166
|
-
--status-color: var(--success-color);
|
170
|
+
--status-color: var(--success-color) !important;
|
171
|
+
|
172
|
+
[class*="icon-"] {
|
173
|
+
color: var(--status-color);
|
174
|
+
}
|
167
175
|
}
|
168
176
|
|
169
177
|
.info {
|
@@ -307,10 +307,8 @@ export default {
|
|
307
307
|
}
|
308
308
|
</script>
|
309
309
|
|
310
|
-
<style
|
310
|
+
<style>
|
311
311
|
/* begin cmd-main-navigation ---------------------------------------------------------------------------------------- */
|
312
|
-
@import '../assets/styles/variables';
|
313
|
-
|
314
312
|
.cmd-main-navigation {
|
315
313
|
&.hide-sub-navigation {
|
316
314
|
ul {
|
@@ -366,6 +364,23 @@ export default {
|
|
366
364
|
}
|
367
365
|
}
|
368
366
|
|
367
|
+
/* keep outside of .cmd-main-navigation to keep specificity */
|
368
|
+
.off-canvas-right {
|
369
|
+
#toggle-offcanvas {
|
370
|
+
margin-right: 0;
|
371
|
+
margin-left: auto;
|
372
|
+
}
|
373
|
+
}
|
374
|
+
|
375
|
+
#toggle-offcanvas {
|
376
|
+
margin-left: 0;
|
377
|
+
display: none;
|
378
|
+
}
|
379
|
+
</style>
|
380
|
+
|
381
|
+
<style lang="scss">
|
382
|
+
@import '../assets/styles/variables';
|
383
|
+
|
369
384
|
@media only screen and (max-width: $medium-max-width) {
|
370
385
|
.cmd-main-navigation#main-navigation-wrapper {
|
371
386
|
--nav-transition: all .5s linear;
|
@@ -530,19 +545,5 @@ export default {
|
|
530
545
|
}
|
531
546
|
}
|
532
547
|
}
|
533
|
-
|
534
|
-
/* keep outside of .cmd-main-navigation to keep specificity */
|
535
|
-
.off-canvas-right {
|
536
|
-
#toggle-offcanvas {
|
537
|
-
margin-right: 0;
|
538
|
-
margin-left: auto;
|
539
|
-
}
|
540
|
-
}
|
541
|
-
|
542
|
-
#toggle-offcanvas {
|
543
|
-
margin-left: 0;
|
544
|
-
display: none;
|
545
|
-
}
|
546
|
-
|
547
548
|
/* end cmd-main-navigation ------------------------------------------------------------------------------------------ */
|
548
549
|
</style>
|
@@ -100,14 +100,14 @@ export default {
|
|
100
100
|
}
|
101
101
|
</script>
|
102
102
|
|
103
|
-
<style
|
103
|
+
<style>
|
104
104
|
/* begin cmd-multistep-form-progress-bar ---------------------------------------------------------------------------------------- */
|
105
|
-
@import '../assets/styles/variables';
|
106
105
|
|
107
106
|
.cmd-multistep-form-progress-bar {
|
108
107
|
display: flex;
|
109
108
|
justify-content: space-around;
|
110
109
|
border: var(--default-border);
|
110
|
+
margin: 0;
|
111
111
|
|
112
112
|
li {
|
113
113
|
display: flex;
|
@@ -263,6 +263,10 @@ export default {
|
|
263
263
|
}
|
264
264
|
}
|
265
265
|
}
|
266
|
+
</style>
|
267
|
+
|
268
|
+
<style lang="scss">
|
269
|
+
@import '../assets/styles/variables';
|
266
270
|
|
267
271
|
@media only screen and (width < #{$small-max-width}) {
|
268
272
|
.cmd-multistep-form-progress-bar {
|
@@ -274,7 +278,7 @@ export default {
|
|
274
278
|
}
|
275
279
|
|
276
280
|
a {
|
277
|
-
span, [class*="icon-"] {
|
281
|
+
:is(span, [class*="icon-"]) {
|
278
282
|
& + [class*="icon-"] {
|
279
283
|
&:last-child {
|
280
284
|
left: auto;
|
@@ -171,11 +171,4 @@ export default {
|
|
171
171
|
}
|
172
172
|
}
|
173
173
|
}
|
174
|
-
</script>
|
175
|
-
|
176
|
-
<style lang="scss">
|
177
|
-
/* begin cmd-newsletter-subscription ---------------------------------------------------------------------------------------- */
|
178
|
-
|
179
|
-
|
180
|
-
/* cmd-newsletter-subscription------------------------------------------------------------------------------------------ */
|
181
|
-
</style>
|
174
|
+
</script>
|