@beterdichtbij/component-library 0.72.4 → 0.72.5-beta.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 +64 -64
- package/dist/bd-component-lib.css +1 -1
- package/dist/bd-component-lib.es.js +174 -171
- package/dist/bd-component-lib.umd.js +57 -57
- 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,265 +1,265 @@
|
|
|
1
|
-
@import "templates/change-password-template";
|
|
2
|
-
@import "templates/content-library-template";
|
|
3
|
-
@import "templates/not-found-template";
|
|
4
|
-
@import "templates/video-call-template";
|
|
5
|
-
// TODO split up per template component
|
|
6
|
-
|
|
7
|
-
.template {
|
|
8
|
-
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
9
|
-
.template-title {
|
|
10
|
-
padding-left:1rem;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.container, .row {
|
|
14
|
-
--bs-gutter-x: 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.container {
|
|
18
|
-
border-top-left-radius: 8px;
|
|
19
|
-
border-top-right-radius: 8px;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.bd-form-buttons {
|
|
23
|
-
display: flex;
|
|
24
|
-
flex-wrap: wrap;
|
|
25
|
-
gap: 1rem;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
img {
|
|
29
|
-
border-top-left-radius: 8px;
|
|
30
|
-
border-top-right-radius: 8px;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&.profile-template, &.change-password-template {
|
|
35
|
-
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
36
|
-
|
|
37
|
-
.bd-profile-picture{
|
|
38
|
-
width:80px;
|
|
39
|
-
height: 80px;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.vue-date-picker {
|
|
44
|
-
// Style only applies when dialog is above.
|
|
45
|
-
.dp__arrow_bottom + div .dp__calendar {
|
|
46
|
-
$week-height: 45px;
|
|
47
|
-
height: $week-height * 6;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.dp__theme_light {
|
|
51
|
-
flex: 1;
|
|
52
|
-
--dp-font-family: $font-primary;
|
|
53
|
-
--dp-primary-color: #3594CF;
|
|
54
|
-
--dp-text-color : $font-color-primary;
|
|
55
|
-
|
|
56
|
-
.btn {
|
|
57
|
-
height: 38px;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.bd-card-template {
|
|
64
|
-
margin-bottom: 50px;
|
|
65
|
-
padding: 56px;
|
|
66
|
-
|
|
67
|
-
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
68
|
-
padding: 1rem;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.card-body{
|
|
72
|
-
padding:revert;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.bd-card-img {
|
|
76
|
-
display:flex;
|
|
77
|
-
gap: 18px;
|
|
78
|
-
margin-bottom: 2rem;
|
|
79
|
-
|
|
80
|
-
button,.btn,.btn-link{
|
|
81
|
-
align-self: center;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.form-input-with-button{
|
|
86
|
-
display:flex;
|
|
87
|
-
gap: 0.5rem;
|
|
88
|
-
}
|
|
89
|
-
.form-label{
|
|
90
|
-
margin-bottom:0.25rem;
|
|
91
|
-
span.form-label-optional {
|
|
92
|
-
font-weight:400;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
&.my-organization-card {
|
|
97
|
-
padding: 0px;
|
|
98
|
-
|
|
99
|
-
.bd-card-img {
|
|
100
|
-
padding: 0px;
|
|
101
|
-
width: 100%;
|
|
102
|
-
height: 250px;
|
|
103
|
-
|
|
104
|
-
img {
|
|
105
|
-
object-fit: cover;
|
|
106
|
-
border-bottom-left-radius: 0px;
|
|
107
|
-
border-bottom-right-radius: 0px;
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&.overview-template {
|
|
114
|
-
.bd-dropdown.dropdown .dropdown-toggle {
|
|
115
|
-
display: flex;
|
|
116
|
-
align-items: center;
|
|
117
|
-
font-weight: 500;
|
|
118
|
-
font-size: 13px;
|
|
119
|
-
letter-spacing: 0;
|
|
120
|
-
line-height: 24px;
|
|
121
|
-
margin-right: 0px;
|
|
122
|
-
text-decoration: none;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.bd-form-checkbox {
|
|
126
|
-
margin-bottom: 22px;
|
|
127
|
-
font-family: $font-family-base;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.bd-article {
|
|
131
|
-
margin-bottom: 16px;
|
|
132
|
-
padding: 20px;
|
|
133
|
-
cursor: pointer;
|
|
134
|
-
|
|
135
|
-
header {
|
|
136
|
-
position: relative;
|
|
137
|
-
|
|
138
|
-
.bd-date {
|
|
139
|
-
color: $secondary;
|
|
140
|
-
font-size: .875rem;
|
|
141
|
-
font-weight: 400;
|
|
142
|
-
text-wrap: nowrap;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.bd-counter {
|
|
146
|
-
margin-right: 0px;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.bd-user__information header {
|
|
150
|
-
justify-content: flex-start;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.bd-dropdown .dropdown-menu {
|
|
155
|
-
padding: 0px;
|
|
156
|
-
|
|
157
|
-
.dropdown-item {
|
|
158
|
-
cursor: pointer;
|
|
159
|
-
line-height: normal;
|
|
160
|
-
padding: 8px 20px;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
.bd-badge {
|
|
166
|
-
margin-right:auto;
|
|
167
|
-
margin: 0px 4px;
|
|
168
|
-
align-self:flex-start;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
.bd-text{
|
|
172
|
-
line-height: 1.375rem;
|
|
173
|
-
max-height: 2.75rem;
|
|
174
|
-
overflow: hidden;
|
|
175
|
-
display: -webkit-box;
|
|
176
|
-
-webkit-box-orient: vertical;
|
|
177
|
-
overflow: hidden;
|
|
178
|
-
-webkit-line-clamp: 2;
|
|
179
|
-
|
|
180
|
-
p {
|
|
181
|
-
margin-bottom: 0px;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.bd-body-card {
|
|
186
|
-
display: flex;
|
|
187
|
-
justify-content: space-between;
|
|
188
|
-
|
|
189
|
-
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
190
|
-
flex-direction: column;
|
|
191
|
-
align-items:flex-end;
|
|
192
|
-
>*:first-child {
|
|
193
|
-
align-self: stretch;
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.bd-dropdown {
|
|
201
|
-
margin-right: 0px;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.bd-counter {
|
|
205
|
-
display:none
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.bd-article.is-unread {
|
|
209
|
-
border-right: 4px solid $primary;
|
|
210
|
-
|
|
211
|
-
.bd-date {
|
|
212
|
-
color: $primary;
|
|
213
|
-
font-weight: 500;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.bd-counter {
|
|
217
|
-
display: block;
|
|
218
|
-
width: 20px;
|
|
219
|
-
height: 20px;
|
|
220
|
-
border-radius: 12px;
|
|
221
|
-
background-color: $primary;
|
|
222
|
-
margin-top:6px;
|
|
223
|
-
}
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
&.detail-conversation-template{
|
|
228
|
-
.bd-card-template {
|
|
229
|
-
margin-top: 20px;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
.spinner-border {
|
|
233
|
-
width: 1rem;
|
|
234
|
-
height: 1rem;
|
|
235
|
-
--bs-spinner-border-width: 0.15em;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.icon-eye-show {
|
|
239
|
-
height: 25px;
|
|
240
|
-
width: 25px;
|
|
241
|
-
padding-bottom: 3px;
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
@media (max-width: map-get($grid-breakpoints, sm)) {
|
|
247
|
-
.template {
|
|
248
|
-
&.overview-template {
|
|
249
|
-
.bd-form-checkbox {
|
|
250
|
-
padding-left:2.8rem;
|
|
251
|
-
margin-bottom: 12px;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.conversations-container {
|
|
255
|
-
padding: 0px;
|
|
256
|
-
|
|
257
|
-
.bd-article {
|
|
258
|
-
margin-bottom: 5px;
|
|
259
|
-
border-radius: 0px;
|
|
260
|
-
padding: 16px;
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
}
|
|
1
|
+
@import "templates/change-password-template";
|
|
2
|
+
@import "templates/content-library-template";
|
|
3
|
+
@import "templates/not-found-template";
|
|
4
|
+
@import "templates/video-call-template";
|
|
5
|
+
// TODO split up per template component
|
|
6
|
+
|
|
7
|
+
.template {
|
|
8
|
+
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
9
|
+
.template-title {
|
|
10
|
+
padding-left:1rem;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.container, .row {
|
|
14
|
+
--bs-gutter-x: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.container {
|
|
18
|
+
border-top-left-radius: 8px;
|
|
19
|
+
border-top-right-radius: 8px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.bd-form-buttons {
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-wrap: wrap;
|
|
25
|
+
gap: 1rem;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
img {
|
|
29
|
+
border-top-left-radius: 8px;
|
|
30
|
+
border-top-right-radius: 8px;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&.profile-template, &.change-password-template {
|
|
35
|
+
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
36
|
+
|
|
37
|
+
.bd-profile-picture{
|
|
38
|
+
width:80px;
|
|
39
|
+
height: 80px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.vue-date-picker {
|
|
44
|
+
// Style only applies when dialog is above.
|
|
45
|
+
.dp__arrow_bottom + div .dp__calendar {
|
|
46
|
+
$week-height: 45px;
|
|
47
|
+
height: $week-height * 6;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.dp__theme_light {
|
|
51
|
+
flex: 1;
|
|
52
|
+
--dp-font-family: $font-primary;
|
|
53
|
+
--dp-primary-color: #3594CF;
|
|
54
|
+
--dp-text-color : $font-color-primary;
|
|
55
|
+
|
|
56
|
+
.btn {
|
|
57
|
+
height: 38px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.bd-card-template {
|
|
64
|
+
margin-bottom: 50px;
|
|
65
|
+
padding: 56px;
|
|
66
|
+
|
|
67
|
+
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
68
|
+
padding: 1rem;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.card-body{
|
|
72
|
+
padding:revert;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.bd-card-img {
|
|
76
|
+
display:flex;
|
|
77
|
+
gap: 18px;
|
|
78
|
+
margin-bottom: 2rem;
|
|
79
|
+
|
|
80
|
+
button,.btn,.btn-link{
|
|
81
|
+
align-self: center;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.form-input-with-button{
|
|
86
|
+
display:flex;
|
|
87
|
+
gap: 0.5rem;
|
|
88
|
+
}
|
|
89
|
+
.form-label{
|
|
90
|
+
margin-bottom:0.25rem;
|
|
91
|
+
span.form-label-optional {
|
|
92
|
+
font-weight:400;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&.my-organization-card {
|
|
97
|
+
padding: 0px;
|
|
98
|
+
|
|
99
|
+
.bd-card-img {
|
|
100
|
+
padding: 0px;
|
|
101
|
+
width: 100%;
|
|
102
|
+
height: 250px;
|
|
103
|
+
|
|
104
|
+
img {
|
|
105
|
+
object-fit: cover;
|
|
106
|
+
border-bottom-left-radius: 0px;
|
|
107
|
+
border-bottom-right-radius: 0px;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&.overview-template {
|
|
114
|
+
.bd-dropdown.dropdown .dropdown-toggle {
|
|
115
|
+
display: flex;
|
|
116
|
+
align-items: center;
|
|
117
|
+
font-weight: 500;
|
|
118
|
+
font-size: 13px;
|
|
119
|
+
letter-spacing: 0;
|
|
120
|
+
line-height: 24px;
|
|
121
|
+
margin-right: 0px;
|
|
122
|
+
text-decoration: none;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.bd-form-checkbox {
|
|
126
|
+
margin-bottom: 22px;
|
|
127
|
+
font-family: $font-family-base;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.bd-article {
|
|
131
|
+
margin-bottom: 16px;
|
|
132
|
+
padding: 20px;
|
|
133
|
+
cursor: pointer;
|
|
134
|
+
|
|
135
|
+
header {
|
|
136
|
+
position: relative;
|
|
137
|
+
|
|
138
|
+
.bd-date {
|
|
139
|
+
color: $secondary;
|
|
140
|
+
font-size: .875rem;
|
|
141
|
+
font-weight: 400;
|
|
142
|
+
text-wrap: nowrap;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.bd-counter {
|
|
146
|
+
margin-right: 0px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.bd-user__information header {
|
|
150
|
+
justify-content: flex-start;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.bd-dropdown .dropdown-menu {
|
|
155
|
+
padding: 0px;
|
|
156
|
+
|
|
157
|
+
.dropdown-item {
|
|
158
|
+
cursor: pointer;
|
|
159
|
+
line-height: normal;
|
|
160
|
+
padding: 8px 20px;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.bd-badge {
|
|
166
|
+
margin-right:auto;
|
|
167
|
+
margin: 0px 4px;
|
|
168
|
+
align-self:flex-start;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.bd-text{
|
|
172
|
+
line-height: 1.375rem;
|
|
173
|
+
max-height: 2.75rem;
|
|
174
|
+
overflow: hidden;
|
|
175
|
+
display: -webkit-box;
|
|
176
|
+
-webkit-box-orient: vertical;
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
-webkit-line-clamp: 2;
|
|
179
|
+
|
|
180
|
+
p {
|
|
181
|
+
margin-bottom: 0px;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.bd-body-card {
|
|
186
|
+
display: flex;
|
|
187
|
+
justify-content: space-between;
|
|
188
|
+
|
|
189
|
+
@media (max-width: map-get($grid-breakpoints, md)) {
|
|
190
|
+
flex-direction: column;
|
|
191
|
+
align-items:flex-end;
|
|
192
|
+
>*:first-child {
|
|
193
|
+
align-self: stretch;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.bd-dropdown {
|
|
201
|
+
margin-right: 0px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.bd-counter {
|
|
205
|
+
display:none
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.bd-article.is-unread {
|
|
209
|
+
border-right: 4px solid $primary;
|
|
210
|
+
|
|
211
|
+
.bd-date {
|
|
212
|
+
color: $primary;
|
|
213
|
+
font-weight: 500;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.bd-counter {
|
|
217
|
+
display: block;
|
|
218
|
+
width: 20px;
|
|
219
|
+
height: 20px;
|
|
220
|
+
border-radius: 12px;
|
|
221
|
+
background-color: $primary;
|
|
222
|
+
margin-top:6px;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
&.detail-conversation-template{
|
|
228
|
+
.bd-card-template {
|
|
229
|
+
margin-top: 20px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.spinner-border {
|
|
233
|
+
width: 1rem;
|
|
234
|
+
height: 1rem;
|
|
235
|
+
--bs-spinner-border-width: 0.15em;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.icon-eye-show {
|
|
239
|
+
height: 25px;
|
|
240
|
+
width: 25px;
|
|
241
|
+
padding-bottom: 3px;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
@media (max-width: map-get($grid-breakpoints, sm)) {
|
|
247
|
+
.template {
|
|
248
|
+
&.overview-template {
|
|
249
|
+
.bd-form-checkbox {
|
|
250
|
+
padding-left:2.8rem;
|
|
251
|
+
margin-bottom: 12px;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.conversations-container {
|
|
255
|
+
padding: 0px;
|
|
256
|
+
|
|
257
|
+
.bd-article {
|
|
258
|
+
margin-bottom: 5px;
|
|
259
|
+
border-radius: 0px;
|
|
260
|
+
padding: 16px;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
265
|
}
|
package/dist/scss/_toast.scss
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
.bd-toast {
|
|
2
|
-
margin: 0.5rem;
|
|
3
|
-
border: 0px;
|
|
4
|
-
margin-left: auto;
|
|
5
|
-
border-left: 4px solid $info;
|
|
6
|
-
|
|
7
|
-
.toast-header {
|
|
8
|
-
border-bottom: 1px solid hsla(203, 62%, 51%, 0.4) ;
|
|
9
|
-
padding: 20px 14px;
|
|
10
|
-
display: flex;
|
|
11
|
-
justify-content: baseline;
|
|
12
|
-
|
|
13
|
-
button {
|
|
14
|
-
margin-left: auto;
|
|
15
|
-
margin-right: 0px;
|
|
16
|
-
background-color: transparent;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
svg {
|
|
20
|
-
fill: $info;
|
|
21
|
-
margin-right: 1rem;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.toast-body {
|
|
26
|
-
padding-left: 20px;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
&-danger {
|
|
30
|
-
border-color: $danger;
|
|
31
|
-
|
|
32
|
-
.toast-header {
|
|
33
|
-
border-color: hsla(8, 74%, 53%, 0.4);
|
|
34
|
-
|
|
35
|
-
svg {
|
|
36
|
-
fill: $danger;
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
&-warning {
|
|
42
|
-
border-color: $warning;
|
|
43
|
-
|
|
44
|
-
.toast-header {
|
|
45
|
-
border-color: hsla(48, 100%, 47%, 0.4);
|
|
46
|
-
|
|
47
|
-
svg {
|
|
48
|
-
fill: $warning;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
&-success {
|
|
54
|
-
border-color: $success;
|
|
55
|
-
|
|
56
|
-
.toast-header {
|
|
57
|
-
border-color: hsla(155, 100%, 37%,0.4);
|
|
58
|
-
|
|
59
|
-
svg {
|
|
60
|
-
fill: $success
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.toast-container {
|
|
67
|
-
position: fixed;
|
|
68
|
-
bottom: 0px;
|
|
69
|
-
width: 100%;
|
|
1
|
+
.bd-toast {
|
|
2
|
+
margin: 0.5rem;
|
|
3
|
+
border: 0px;
|
|
4
|
+
margin-left: auto;
|
|
5
|
+
border-left: 4px solid $info;
|
|
6
|
+
|
|
7
|
+
.toast-header {
|
|
8
|
+
border-bottom: 1px solid hsla(203, 62%, 51%, 0.4) ;
|
|
9
|
+
padding: 20px 14px;
|
|
10
|
+
display: flex;
|
|
11
|
+
justify-content: baseline;
|
|
12
|
+
|
|
13
|
+
button {
|
|
14
|
+
margin-left: auto;
|
|
15
|
+
margin-right: 0px;
|
|
16
|
+
background-color: transparent;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
svg {
|
|
20
|
+
fill: $info;
|
|
21
|
+
margin-right: 1rem;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.toast-body {
|
|
26
|
+
padding-left: 20px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&-danger {
|
|
30
|
+
border-color: $danger;
|
|
31
|
+
|
|
32
|
+
.toast-header {
|
|
33
|
+
border-color: hsla(8, 74%, 53%, 0.4);
|
|
34
|
+
|
|
35
|
+
svg {
|
|
36
|
+
fill: $danger;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&-warning {
|
|
42
|
+
border-color: $warning;
|
|
43
|
+
|
|
44
|
+
.toast-header {
|
|
45
|
+
border-color: hsla(48, 100%, 47%, 0.4);
|
|
46
|
+
|
|
47
|
+
svg {
|
|
48
|
+
fill: $warning;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&-success {
|
|
54
|
+
border-color: $success;
|
|
55
|
+
|
|
56
|
+
.toast-header {
|
|
57
|
+
border-color: hsla(155, 100%, 37%,0.4);
|
|
58
|
+
|
|
59
|
+
svg {
|
|
60
|
+
fill: $success
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.toast-container {
|
|
67
|
+
position: fixed;
|
|
68
|
+
bottom: 0px;
|
|
69
|
+
width: 100%;
|
|
70
70
|
}
|