@beterdichtbij/component-library 0.67.2 → 0.69.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -12
- package/dist/bd-component-lib.cjs.js +98 -98
- package/dist/bd-component-lib.css +1 -1
- package/dist/bd-component-lib.es.js +5288 -5272
- package/dist/bd-component-lib.umd.js +104 -104
- package/dist/components/communication/BDChatCloud/BDChatCloud.vue.d.ts +1 -1
- package/dist/components/feedback/BDPillContainer/BDPillContainer.vue.d.ts +5 -0
- package/dist/components/forms/BDMarkdownEditor/BDMarkdownEditor.vue.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/interfaces/BDChatCloudProps.d.ts +2 -1
- package/dist/interfaces/BDMarkdownEditorProps.d.ts +2 -1
- package/dist/interfaces/BDPillContainerProps.d.ts +4 -0
- package/dist/locales/en.json +10 -10
- package/dist/locales/nl.json +137 -137
- package/dist/scss/_active-filters.scss +65 -65
- package/dist/scss/_alert.scss +10 -11
- package/dist/scss/_article.scss +25 -23
- package/dist/scss/_assign-conversation-modal.scss +13 -13
- package/dist/scss/_attachments.scss +107 -107
- package/dist/scss/_badge.scss +18 -18
- package/dist/scss/_base.scss +0 -1
- package/dist/scss/_button.scss +77 -74
- package/dist/scss/_card.scss +56 -56
- package/dist/scss/_chatcloud.scss +98 -98
- package/dist/scss/_collapsable-card.scss +107 -107
- package/dist/scss/_content-library-card-message-template.scss +136 -136
- package/dist/scss/_content-library-card.scss +158 -158
- package/dist/scss/_content-library-modal.scss +8 -8
- package/dist/scss/_content-library-overview.scss +4 -4
- package/dist/scss/_content-library-split-button.scss +23 -19
- package/dist/scss/_conversation-to-text-modal.scss +36 -36
- package/dist/scss/_dropdown.scss +113 -113
- package/dist/scss/_extern.scss +1 -1
- package/dist/scss/_file-upload-preview.scss +53 -53
- package/dist/scss/_file-upload.scss +26 -26
- package/dist/scss/_filter-card.scss +64 -64
- package/dist/scss/_form-field.scss +12 -12
- package/dist/scss/_form-multiple-checkbox.scss +51 -51
- package/dist/scss/_forms.scss +2 -2
- package/dist/scss/_header.scss +170 -170
- package/dist/scss/_icon-luscii-logo.scss +31 -31
- package/dist/scss/_icons.scss +38 -38
- package/dist/scss/_image-attachment-modal.scss +91 -91
- package/dist/scss/_input-group.scss +2 -2
- package/dist/scss/_loader.scss +59 -59
- package/dist/scss/_markdown-editor.scss +114 -114
- package/dist/scss/_message-template-form-modal.scss +47 -47
- package/dist/scss/_mobile-menu.scss +91 -91
- package/dist/scss/_modal.scss +176 -176
- package/dist/scss/_notification-button.scss +29 -29
- package/dist/scss/_pagination.scss +41 -40
- package/dist/scss/_phone-number-edit-modal.scss +35 -35
- package/dist/scss/_pill-container.scss +26 -0
- package/dist/scss/_pill.scss +64 -89
- package/dist/scss/_profile-image.scss +34 -34
- package/dist/scss/_table-sort-header.scss +13 -13
- package/dist/scss/_table.scss +16 -16
- package/dist/scss/_templates.scss +317 -323
- package/dist/scss/_toast.scss +69 -69
- package/dist/scss/_user-information.scss +34 -34
- package/dist/scss/_user.scss +21 -13
- package/dist/scss/_video-call-toast.scss +100 -100
- package/dist/scss/_zoomslider.scss +77 -77
- package/dist/scss/base/variables.scss +210 -210
- package/dist/scss/component-library-styling.scss +51 -50
- package/dist/scss/extern/_bootstrap.scss +14 -14
- package/dist/scss/extern/_prime-vue.scss +551 -551
- package/dist/scss/forms/_form-check.scss +16 -16
- package/dist/scss/forms/_form-input.scss +9 -9
- package/dist/scss/mixins.scss +78 -78
- package/dist/scss/templates/_change-password-template.scss +8 -8
- package/dist/scss/templates/_content-library-template.scss +135 -135
- package/dist/scss/templates/_not-found-template.scss +9 -5
- package/dist/stores/SessionTimeOutStore.ts +46 -46
- package/package.json +133 -133
- package/dist/scss/base/typography.scss +0 -16
package/dist/scss/_loader.scss
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
.bd-loader {
|
|
2
|
-
&__spinner {
|
|
3
|
-
display: flex;
|
|
4
|
-
justify-content: center;
|
|
5
|
-
position: relative;
|
|
6
|
-
margin-bottom: 10px;
|
|
7
|
-
|
|
8
|
-
img, svg.icon.icon-videocall {
|
|
9
|
-
fill: $color-border;
|
|
10
|
-
position: absolute;
|
|
11
|
-
top: 50%;
|
|
12
|
-
left: 50%;
|
|
13
|
-
transform: translate(-50%, -50%);
|
|
14
|
-
width: 44px;
|
|
15
|
-
height: 44px;
|
|
16
|
-
}
|
|
17
|
-
.spinner-border {
|
|
18
|
-
width: 90px;
|
|
19
|
-
height: 90px;
|
|
20
|
-
border-top-color: $blue;
|
|
21
|
-
border-bottom-color: $blue;
|
|
22
|
-
border-left-color: $blue;
|
|
23
|
-
animation-duration: 1.25s;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
&.md {
|
|
27
|
-
img, svg.icon.icon-videocall {
|
|
28
|
-
width: 88px;
|
|
29
|
-
height: 88px;
|
|
30
|
-
}
|
|
31
|
-
.spinner-border {
|
|
32
|
-
width: 140px;
|
|
33
|
-
height: 140px;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
&.lg {
|
|
37
|
-
img, svg.icon.icon-videocall {
|
|
38
|
-
width: 180px;
|
|
39
|
-
height: 180px;
|
|
40
|
-
}
|
|
41
|
-
.spinner-border {
|
|
42
|
-
width: 260px;
|
|
43
|
-
height: 260px;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
&--static {
|
|
47
|
-
.spinner-border {
|
|
48
|
-
animation-duration: 0s;
|
|
49
|
-
opacity: 0;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
&--colleague {
|
|
53
|
-
.spinner-border {
|
|
54
|
-
border-top-color: $color-colleague;
|
|
55
|
-
border-bottom-color: $color-colleague;
|
|
56
|
-
border-left-color: $color-colleague;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
}
|
|
1
|
+
.bd-loader {
|
|
2
|
+
&__spinner {
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
position: relative;
|
|
6
|
+
margin-bottom: 10px;
|
|
7
|
+
|
|
8
|
+
img, svg.icon.icon-videocall {
|
|
9
|
+
fill: $color-border;
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 50%;
|
|
12
|
+
left: 50%;
|
|
13
|
+
transform: translate(-50%, -50%);
|
|
14
|
+
width: 44px;
|
|
15
|
+
height: 44px;
|
|
16
|
+
}
|
|
17
|
+
.spinner-border {
|
|
18
|
+
width: 90px;
|
|
19
|
+
height: 90px;
|
|
20
|
+
border-top-color: $blue;
|
|
21
|
+
border-bottom-color: $blue;
|
|
22
|
+
border-left-color: $blue;
|
|
23
|
+
animation-duration: 1.25s;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
&.md {
|
|
27
|
+
img, svg.icon.icon-videocall {
|
|
28
|
+
width: 88px;
|
|
29
|
+
height: 88px;
|
|
30
|
+
}
|
|
31
|
+
.spinner-border {
|
|
32
|
+
width: 140px;
|
|
33
|
+
height: 140px;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
&.lg {
|
|
37
|
+
img, svg.icon.icon-videocall {
|
|
38
|
+
width: 180px;
|
|
39
|
+
height: 180px;
|
|
40
|
+
}
|
|
41
|
+
.spinner-border {
|
|
42
|
+
width: 260px;
|
|
43
|
+
height: 260px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
&--static {
|
|
47
|
+
.spinner-border {
|
|
48
|
+
animation-duration: 0s;
|
|
49
|
+
opacity: 0;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
&--colleague {
|
|
53
|
+
.spinner-border {
|
|
54
|
+
border-top-color: $color-colleague;
|
|
55
|
+
border-bottom-color: $color-colleague;
|
|
56
|
+
border-left-color: $color-colleague;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -1,115 +1,115 @@
|
|
|
1
|
-
.bd-markdown-editor {
|
|
2
|
-
position: relative;
|
|
3
|
-
padding: 0.5rem;
|
|
4
|
-
border: 1px solid $gray-500;
|
|
5
|
-
background-color: $white;
|
|
6
|
-
border-radius: 0.5rem;
|
|
7
|
-
position: relative;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
&.is-invalid {
|
|
11
|
-
border: 1px solid $color-red;
|
|
12
|
-
|
|
13
|
-
+.invalid-feedback {
|
|
14
|
-
display: block;
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.ProseMirror {
|
|
19
|
-
padding: 8px;
|
|
20
|
-
|
|
21
|
-
&-focused {
|
|
22
|
-
outline: none;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
ul, ol, dl {
|
|
26
|
-
margin-bottom: 1rem;
|
|
27
|
-
|
|
28
|
-
li {
|
|
29
|
-
p:last-of-type {
|
|
30
|
-
margin-bottom: 0;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
p {
|
|
36
|
-
margin-bottom: 1rem;
|
|
37
|
-
|
|
38
|
-
&.is-editor-empty:first-child::before {
|
|
39
|
-
content: attr(data-placeholder);
|
|
40
|
-
float: left;
|
|
41
|
-
color: #adb5bd;
|
|
42
|
-
pointer-events: none;
|
|
43
|
-
height: 0;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
&__menu-bottom {
|
|
49
|
-
display: flex;
|
|
50
|
-
gap: 0.5rem;
|
|
51
|
-
|
|
52
|
-
.bd-btn {
|
|
53
|
-
line-height: unset;
|
|
54
|
-
padding: 6px 8px;
|
|
55
|
-
|
|
56
|
-
svg {
|
|
57
|
-
margin: unset;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.popover-body {
|
|
62
|
-
padding h3 {
|
|
63
|
-
margin-bottom: 5px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
fieldset.form-group {
|
|
67
|
-
margin: 0px;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
button {
|
|
73
|
-
&.disabled {
|
|
74
|
-
border: none;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.btn-primary {
|
|
79
|
-
background-color: $primary;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.btn-light {
|
|
83
|
-
--bs-btn-bg: #{$white};
|
|
84
|
-
--bs-btn-hover-bg: #{$gray-200};
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.bd-link-input-popover.bd-link-input-bottom {
|
|
88
|
-
position: absolute;
|
|
89
|
-
left: 100px;
|
|
90
|
-
margin: auto;
|
|
91
|
-
z-index: 1050;
|
|
92
|
-
min-width: 300px;
|
|
93
|
-
max-width: 500px;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.bd-link-input-popover {
|
|
97
|
-
.validation-text {
|
|
98
|
-
font-size: 0.7em;
|
|
99
|
-
font-weight: 500;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.form-control {
|
|
104
|
-
display:inline;
|
|
105
|
-
margin:8px 0 16px 0;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.form-control::placeholder {
|
|
109
|
-
opacity: 0.5;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
span.suggestion {
|
|
113
|
-
margin-right:0px;
|
|
114
|
-
}
|
|
1
|
+
.bd-markdown-editor {
|
|
2
|
+
position: relative;
|
|
3
|
+
padding: 0.5rem;
|
|
4
|
+
border: 1px solid $gray-500;
|
|
5
|
+
background-color: $white;
|
|
6
|
+
border-radius: 0.5rem;
|
|
7
|
+
position: relative;
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
&.is-invalid {
|
|
11
|
+
border: 1px solid $color-red;
|
|
12
|
+
|
|
13
|
+
+.invalid-feedback {
|
|
14
|
+
display: block;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ProseMirror {
|
|
19
|
+
padding: 8px;
|
|
20
|
+
|
|
21
|
+
&-focused {
|
|
22
|
+
outline: none;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
ul, ol, dl {
|
|
26
|
+
margin-bottom: 1rem;
|
|
27
|
+
|
|
28
|
+
li {
|
|
29
|
+
p:last-of-type {
|
|
30
|
+
margin-bottom: 0;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
p {
|
|
36
|
+
margin-bottom: 1rem;
|
|
37
|
+
|
|
38
|
+
&.is-editor-empty:first-child::before {
|
|
39
|
+
content: attr(data-placeholder);
|
|
40
|
+
float: left;
|
|
41
|
+
color: #adb5bd;
|
|
42
|
+
pointer-events: none;
|
|
43
|
+
height: 0;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
&__menu-bottom {
|
|
49
|
+
display: flex;
|
|
50
|
+
gap: 0.5rem;
|
|
51
|
+
|
|
52
|
+
.bd-btn {
|
|
53
|
+
line-height: unset;
|
|
54
|
+
padding: 6px 8px;
|
|
55
|
+
|
|
56
|
+
svg {
|
|
57
|
+
margin: unset;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.popover-body {
|
|
62
|
+
padding h3 {
|
|
63
|
+
margin-bottom: 5px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
fieldset.form-group {
|
|
67
|
+
margin: 0px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
button {
|
|
73
|
+
&.disabled {
|
|
74
|
+
border: none;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.btn-primary {
|
|
79
|
+
background-color: $primary;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.btn-light {
|
|
83
|
+
--bs-btn-bg: #{$white};
|
|
84
|
+
--bs-btn-hover-bg: #{$gray-200};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.bd-link-input-popover.bd-link-input-bottom {
|
|
88
|
+
position: absolute;
|
|
89
|
+
left: 100px;
|
|
90
|
+
margin: auto;
|
|
91
|
+
z-index: 1050;
|
|
92
|
+
min-width: 300px;
|
|
93
|
+
max-width: 500px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.bd-link-input-popover {
|
|
97
|
+
.validation-text {
|
|
98
|
+
font-size: 0.7em;
|
|
99
|
+
font-weight: 500;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.form-control {
|
|
104
|
+
display:inline;
|
|
105
|
+
margin:8px 0 16px 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.form-control::placeholder {
|
|
109
|
+
opacity: 0.5;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
span.suggestion {
|
|
113
|
+
margin-right:0px;
|
|
114
|
+
}
|
|
115
115
|
}
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
#message-template-form-modal {
|
|
2
|
-
|
|
3
|
-
.bd-content-library-split-button {
|
|
4
|
-
margin-top: 0.75rem;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.textarea-button {
|
|
8
|
-
margin-top: 0.75rem;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.preview-attachments {
|
|
12
|
-
margin-top: 1rem;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.form-splitter {
|
|
16
|
-
width: 100%;
|
|
17
|
-
border-top: 2px solid #abb0be;
|
|
18
|
-
margin-top: 1rem;
|
|
19
|
-
margin-bottom: 1rem;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.bd-input-group {
|
|
23
|
-
margin-bottom: 16px;
|
|
24
|
-
|
|
25
|
-
&:last-of-type {
|
|
26
|
-
margin-bottom: 0;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.v-select.is-invalid .vs__dropdown-toggle {
|
|
31
|
-
border-color: #e0452c;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.bd-markdown-editor {
|
|
35
|
-
ul li {
|
|
36
|
-
list-style-type: disc;
|
|
37
|
-
margin-left: 2rem;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.attachment-list__item {
|
|
41
|
-
list-style-type: none;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.
|
|
45
|
-
list-style-type: none;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
1
|
+
#message-template-form-modal {
|
|
2
|
+
|
|
3
|
+
.bd-content-library-split-button {
|
|
4
|
+
margin-top: 0.75rem;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.textarea-button {
|
|
8
|
+
margin-top: 0.75rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.preview-attachments {
|
|
12
|
+
margin-top: 1rem;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.form-splitter {
|
|
16
|
+
width: 100%;
|
|
17
|
+
border-top: 2px solid #abb0be;
|
|
18
|
+
margin-top: 1rem;
|
|
19
|
+
margin-bottom: 1rem;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.bd-input-group {
|
|
23
|
+
margin-bottom: 16px;
|
|
24
|
+
|
|
25
|
+
&:last-of-type {
|
|
26
|
+
margin-bottom: 0;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.v-select.is-invalid .vs__dropdown-toggle {
|
|
31
|
+
border-color: #e0452c;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.bd-markdown-editor {
|
|
35
|
+
ul li {
|
|
36
|
+
list-style-type: disc;
|
|
37
|
+
margin-left: 2rem;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.attachment-list__item {
|
|
41
|
+
list-style-type: none;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.bd-pill-container__item {
|
|
45
|
+
list-style-type: none;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
48
|
}
|
|
@@ -1,92 +1,92 @@
|
|
|
1
|
-
.bd-mobile-menu {
|
|
2
|
-
position: fixed;
|
|
3
|
-
height: 100%;
|
|
4
|
-
width: 100%;
|
|
5
|
-
top: 0px;
|
|
6
|
-
right: -100%;
|
|
7
|
-
background: #fff;
|
|
8
|
-
z-index: 1000;
|
|
9
|
-
animation-duration: .5s;
|
|
10
|
-
padding: 0px 30px;
|
|
11
|
-
user-select: none;
|
|
12
|
-
display: none;
|
|
13
|
-
|
|
14
|
-
&.inactive {
|
|
15
|
-
animation-name: slideout;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
&.active {
|
|
19
|
-
animation-name: slidein;
|
|
20
|
-
right: 0px;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.header {
|
|
24
|
-
height: 66px;
|
|
25
|
-
width: 100%;
|
|
26
|
-
display: flex;
|
|
27
|
-
justify-content: space-between;
|
|
28
|
-
align-items: center;
|
|
29
|
-
border-bottom: 1px solid $color-lightblue;
|
|
30
|
-
color: $color-blue;
|
|
31
|
-
font-family: $font-secondary;
|
|
32
|
-
font-weight: $font-bold;
|
|
33
|
-
font-size: 1rem;
|
|
34
|
-
|
|
35
|
-
.icon-close-wrapper {
|
|
36
|
-
width: 44px;
|
|
37
|
-
height: 66px;
|
|
38
|
-
cursor: pointer;
|
|
39
|
-
display: flex;
|
|
40
|
-
justify-content: right;
|
|
41
|
-
align-items: center;
|
|
42
|
-
|
|
43
|
-
.icon-close {
|
|
44
|
-
fill: $color-blue;
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.navbar {
|
|
50
|
-
padding: 0px;
|
|
51
|
-
|
|
52
|
-
.nav-item {
|
|
53
|
-
border-bottom: 1px solid $color-lightblue;
|
|
54
|
-
font-size: 1rem;
|
|
55
|
-
|
|
56
|
-
.nav-link {
|
|
57
|
-
cursor: pointer;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.icon {
|
|
61
|
-
fill: #394156;
|
|
62
|
-
margin-right: 8px;
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
@keyframes slidein {
|
|
69
|
-
from {
|
|
70
|
-
right: -100%;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
to {
|
|
74
|
-
right: 0px;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
@keyframes slideout {
|
|
79
|
-
from {
|
|
80
|
-
right: 0px;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
to {
|
|
84
|
-
right: -100%;
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
89
|
-
.bd-mobile-menu {
|
|
90
|
-
display: block;
|
|
91
|
-
}
|
|
1
|
+
.bd-mobile-menu {
|
|
2
|
+
position: fixed;
|
|
3
|
+
height: 100%;
|
|
4
|
+
width: 100%;
|
|
5
|
+
top: 0px;
|
|
6
|
+
right: -100%;
|
|
7
|
+
background: #fff;
|
|
8
|
+
z-index: 1000;
|
|
9
|
+
animation-duration: .5s;
|
|
10
|
+
padding: 0px 30px;
|
|
11
|
+
user-select: none;
|
|
12
|
+
display: none;
|
|
13
|
+
|
|
14
|
+
&.inactive {
|
|
15
|
+
animation-name: slideout;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
&.active {
|
|
19
|
+
animation-name: slidein;
|
|
20
|
+
right: 0px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.header {
|
|
24
|
+
height: 66px;
|
|
25
|
+
width: 100%;
|
|
26
|
+
display: flex;
|
|
27
|
+
justify-content: space-between;
|
|
28
|
+
align-items: center;
|
|
29
|
+
border-bottom: 1px solid $color-lightblue;
|
|
30
|
+
color: $color-blue;
|
|
31
|
+
font-family: $font-secondary;
|
|
32
|
+
font-weight: $font-bold;
|
|
33
|
+
font-size: 1rem;
|
|
34
|
+
|
|
35
|
+
.icon-close-wrapper {
|
|
36
|
+
width: 44px;
|
|
37
|
+
height: 66px;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
display: flex;
|
|
40
|
+
justify-content: right;
|
|
41
|
+
align-items: center;
|
|
42
|
+
|
|
43
|
+
.icon-close {
|
|
44
|
+
fill: $color-blue;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.navbar {
|
|
50
|
+
padding: 0px;
|
|
51
|
+
|
|
52
|
+
.nav-item {
|
|
53
|
+
border-bottom: 1px solid $color-lightblue;
|
|
54
|
+
font-size: 1rem;
|
|
55
|
+
|
|
56
|
+
.nav-link {
|
|
57
|
+
cursor: pointer;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon {
|
|
61
|
+
fill: #394156;
|
|
62
|
+
margin-right: 8px;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@keyframes slidein {
|
|
69
|
+
from {
|
|
70
|
+
right: -100%;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
to {
|
|
74
|
+
right: 0px;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@keyframes slideout {
|
|
79
|
+
from {
|
|
80
|
+
right: 0px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
to {
|
|
84
|
+
right: -100%;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
89
|
+
.bd-mobile-menu {
|
|
90
|
+
display: block;
|
|
91
|
+
}
|
|
92
92
|
}
|