@beterdichtbij/component-library 0.72.4 → 0.72.5-beta.1
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 +56 -56
- package/dist/bd-component-lib.css +1 -1
- package/dist/bd-component-lib.es.js +263 -237
- package/dist/bd-component-lib.umd.js +67 -67
- package/dist/locales/en.json +79 -79
- package/dist/locales/nl.json +180 -180
- package/dist/scss/_active-filters.scss +65 -65
- package/dist/scss/_alert.scss +11 -11
- package/dist/scss/_article.scss +31 -31
- 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/_button.scss +80 -80
- package/dist/scss/_card.scss +62 -62
- package/dist/scss/_chatcloud.scss +99 -99
- package/dist/scss/_collapsable-card.scss +103 -103
- 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 -23
- 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 +3 -3
- 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/_mixins.scss +78 -78
- package/dist/scss/_mobile-menu.scss +91 -91
- package/dist/scss/_modal.scss +182 -182
- package/dist/scss/_notification-button.scss +29 -29
- package/dist/scss/_pagination.scss +56 -56
- package/dist/scss/_phone-number-edit-modal.scss +35 -35
- package/dist/scss/_pill-container.scss +26 -26
- package/dist/scss/_pill.scss +63 -63
- 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 +264 -264
- package/dist/scss/_toast.scss +69 -69
- package/dist/scss/_user-information.scss +34 -34
- package/dist/scss/_user.scss +21 -21
- 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/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/forms/_form-select.scss +4 -4
- package/dist/scss/main.scss +52 -52
- 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 +35 -35
- package/dist/scss/templates/_video-call-template.scss +225 -225
- package/dist/stores/SessionTimeOutStore.ts +46 -46
- package/package.json +133 -133
|
@@ -1,92 +1,92 @@
|
|
|
1
|
-
#image-attachment-modal {
|
|
2
|
-
&.modal-lg {
|
|
3
|
-
--bs-modal-width: 1200px;
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
.image-preview-image-holder {
|
|
7
|
-
width: 100%;
|
|
8
|
-
height: 100%;
|
|
9
|
-
overflow: auto;
|
|
10
|
-
cursor: grab;
|
|
11
|
-
-webkit-touch-callout: none;
|
|
12
|
-
-webkit-user-select: none;
|
|
13
|
-
-khtml-user-select: none;
|
|
14
|
-
-moz-user-select: none;
|
|
15
|
-
-ms-user-select: none;
|
|
16
|
-
user-select: none;
|
|
17
|
-
margin-left: auto;
|
|
18
|
-
margin-right: auto;
|
|
19
|
-
|
|
20
|
-
.image-preview-modal {
|
|
21
|
-
margin: 0px auto;
|
|
22
|
-
display: block;
|
|
23
|
-
user-select: none;
|
|
24
|
-
width: auto;
|
|
25
|
-
height: auto;
|
|
26
|
-
max-width: 600px;
|
|
27
|
-
max-height: 400px;
|
|
28
|
-
transition: transform .2s;
|
|
29
|
-
transform-origin: top;
|
|
30
|
-
z-index: 1;
|
|
31
|
-
|
|
32
|
-
@include media-breakpoint-down(sm) {
|
|
33
|
-
max-width: 300px;
|
|
34
|
-
max-height: 200px;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
// Zoom didn't work when the styling was incorporated into the Vue component.
|
|
38
|
-
&.zoom {
|
|
39
|
-
&-1 {
|
|
40
|
-
transform: scale(1.25);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
&-2 {
|
|
44
|
-
transform: scale(1.5);
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
&-3 {
|
|
48
|
-
transform: scale(1.75);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
&-4 {
|
|
52
|
-
transform: scale(2);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.image-preview-bd-zoom-slider, .download-image {
|
|
59
|
-
width: 250px;
|
|
60
|
-
margin-left: auto;
|
|
61
|
-
margin-right: auto;
|
|
62
|
-
margin-top: 50px;
|
|
63
|
-
z-index: 2;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.download-image {
|
|
67
|
-
width: 250px;
|
|
68
|
-
display: block;
|
|
69
|
-
margin-left: auto;
|
|
70
|
-
margin-right: auto;
|
|
71
|
-
margin-top: 30px;
|
|
72
|
-
margin-bottom: 30px;
|
|
73
|
-
z-index: 3;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.show-spinner {
|
|
77
|
-
width: 100px;
|
|
78
|
-
height: 50px;
|
|
79
|
-
display: flex;
|
|
80
|
-
justify-content: center;
|
|
81
|
-
align-items: center;
|
|
82
|
-
margin: auto;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.modal-footer {
|
|
86
|
-
display: none;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
a {
|
|
90
|
-
text-decoration: none;
|
|
91
|
-
}
|
|
1
|
+
#image-attachment-modal {
|
|
2
|
+
&.modal-lg {
|
|
3
|
+
--bs-modal-width: 1200px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.image-preview-image-holder {
|
|
7
|
+
width: 100%;
|
|
8
|
+
height: 100%;
|
|
9
|
+
overflow: auto;
|
|
10
|
+
cursor: grab;
|
|
11
|
+
-webkit-touch-callout: none;
|
|
12
|
+
-webkit-user-select: none;
|
|
13
|
+
-khtml-user-select: none;
|
|
14
|
+
-moz-user-select: none;
|
|
15
|
+
-ms-user-select: none;
|
|
16
|
+
user-select: none;
|
|
17
|
+
margin-left: auto;
|
|
18
|
+
margin-right: auto;
|
|
19
|
+
|
|
20
|
+
.image-preview-modal {
|
|
21
|
+
margin: 0px auto;
|
|
22
|
+
display: block;
|
|
23
|
+
user-select: none;
|
|
24
|
+
width: auto;
|
|
25
|
+
height: auto;
|
|
26
|
+
max-width: 600px;
|
|
27
|
+
max-height: 400px;
|
|
28
|
+
transition: transform .2s;
|
|
29
|
+
transform-origin: top;
|
|
30
|
+
z-index: 1;
|
|
31
|
+
|
|
32
|
+
@include media-breakpoint-down(sm) {
|
|
33
|
+
max-width: 300px;
|
|
34
|
+
max-height: 200px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// Zoom didn't work when the styling was incorporated into the Vue component.
|
|
38
|
+
&.zoom {
|
|
39
|
+
&-1 {
|
|
40
|
+
transform: scale(1.25);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&-2 {
|
|
44
|
+
transform: scale(1.5);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
&-3 {
|
|
48
|
+
transform: scale(1.75);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&-4 {
|
|
52
|
+
transform: scale(2);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.image-preview-bd-zoom-slider, .download-image {
|
|
59
|
+
width: 250px;
|
|
60
|
+
margin-left: auto;
|
|
61
|
+
margin-right: auto;
|
|
62
|
+
margin-top: 50px;
|
|
63
|
+
z-index: 2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.download-image {
|
|
67
|
+
width: 250px;
|
|
68
|
+
display: block;
|
|
69
|
+
margin-left: auto;
|
|
70
|
+
margin-right: auto;
|
|
71
|
+
margin-top: 30px;
|
|
72
|
+
margin-bottom: 30px;
|
|
73
|
+
z-index: 3;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.show-spinner {
|
|
77
|
+
width: 100px;
|
|
78
|
+
height: 50px;
|
|
79
|
+
display: flex;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
align-items: center;
|
|
82
|
+
margin: auto;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.modal-footer {
|
|
86
|
+
display: none;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
a {
|
|
90
|
+
text-decoration: none;
|
|
91
|
+
}
|
|
92
92
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
.bd-input-group {
|
|
2
|
-
display: block;
|
|
1
|
+
.bd-input-group {
|
|
2
|
+
display: block;
|
|
3
3
|
}
|
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
|
-
.bd-pill-container__item {
|
|
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
|
}
|