@burh/nuxt-core 1.0.410 → 1.0.412
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/assets/sass/burh-ds/atoms/_forms.scss +21 -19
- package/components/burh-ds/Curriculum/UserCurriculum/UserCvRightSide.vue +874 -859
- package/components/burh-ds/Modals/AddCustomerModal.vue +5 -46
- package/components/burh-ds/Modals/AddMember.vue +5 -48
- package/components/burh-ds/Modals/AddRoleModal.vue +4 -47
- package/components/burh-ds/Modals/AppConfigModal.vue +326 -326
- package/components/burh-ds/Modals/PlanModal.vue +133 -172
- package/components/burh-ds/Modals/RequestModal.vue +206 -247
- package/components/burh-ds/Modals/SendTest.vue +7 -43
- package/components/burh-ds/Modals/SharedModal.vue +7 -50
- package/components/burh-ds/Modals/UniversalShareModal.vue +7 -50
- package/components/burh-ds/Modals/UniversalWhatsappModal.vue +5 -53
- package/components/burh-ds/Modals/WhatsappModal.vue +79 -127
- package/components/burh-ds/Skeleton/AppHeader.vue +129 -0
- package/components/burh-ds/Skeleton/SkeletonAnimate.vue +121 -96
- package/components/burh-ds/Tabs/TesteTab.vue +108 -108
- package/package.json +1 -1
|
@@ -16,29 +16,29 @@ $input-placeholder-color: $text-color-light;
|
|
|
16
16
|
background-color: $input-bg;
|
|
17
17
|
background-clip: padding-box;
|
|
18
18
|
border: $input-border-width solid $input-border-color;
|
|
19
|
-
|
|
19
|
+
|
|
20
20
|
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
|
21
21
|
@include border-radius($input-border-radius, 0);
|
|
22
|
-
|
|
22
|
+
|
|
23
23
|
@include box-shadow($input-box-shadow);
|
|
24
24
|
@include transition($input-transition);
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
// Unstyle the caret on `<select>`s in IE10+.
|
|
27
27
|
&::-ms-expand {
|
|
28
28
|
background-color: transparent;
|
|
29
29
|
border: 0;
|
|
30
30
|
}
|
|
31
|
-
|
|
31
|
+
|
|
32
32
|
// Customize the `:focus` state to imitate native WebKit styles.
|
|
33
33
|
@include form-control-focus();
|
|
34
|
-
|
|
34
|
+
|
|
35
35
|
// Placeholder
|
|
36
36
|
&::placeholder {
|
|
37
37
|
color: $input-placeholder-color;
|
|
38
38
|
// Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526.
|
|
39
39
|
opacity: 1;
|
|
40
40
|
}
|
|
41
|
-
|
|
41
|
+
|
|
42
42
|
// Disabled and read-only inputs
|
|
43
43
|
//
|
|
44
44
|
// HTML5 says that controls under a fieldset > legend:first-child won't be
|
|
@@ -66,7 +66,7 @@ select {
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
option::selected{
|
|
69
|
-
background-color: yellow;
|
|
69
|
+
background-color: yellow;
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
}
|
|
@@ -78,10 +78,12 @@ select {
|
|
|
78
78
|
.el{
|
|
79
79
|
&-scrollbar {
|
|
80
80
|
&__view{
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
81
|
+
&:not(.el-autocomplete-suggestion__list) {
|
|
82
|
+
border: $input-border-width solid $color-primary;
|
|
83
|
+
|
|
84
|
+
// Note: This has no effect on <select>s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
|
85
|
+
@include border-radius($input-border-radius, 0);
|
|
86
|
+
}
|
|
85
87
|
}
|
|
86
88
|
}
|
|
87
89
|
|
|
@@ -98,7 +100,7 @@ select {
|
|
|
98
100
|
}
|
|
99
101
|
|
|
100
102
|
&-select {
|
|
101
|
-
div.el-input,
|
|
103
|
+
div.el-input,
|
|
102
104
|
.is-focus {
|
|
103
105
|
.el-input__inner {
|
|
104
106
|
&:focus {
|
|
@@ -112,7 +114,7 @@ select {
|
|
|
112
114
|
border-color: $color-primary !important;
|
|
113
115
|
}
|
|
114
116
|
}
|
|
115
|
-
|
|
117
|
+
|
|
116
118
|
&-dropdown {
|
|
117
119
|
.el-scrollbar:not(.is-empty) + .popper__arrow{
|
|
118
120
|
border-bottom-color: $color-primary;
|
|
@@ -178,7 +180,7 @@ div {
|
|
|
178
180
|
.custom-toggle {
|
|
179
181
|
margin: 0 4rem 0 0 !important;
|
|
180
182
|
|
|
181
|
-
|
|
183
|
+
|
|
182
184
|
input:not(:checked) + span.custom-toggle-slider {
|
|
183
185
|
border: 1px solid $color-primary;
|
|
184
186
|
|
|
@@ -194,7 +196,7 @@ div {
|
|
|
194
196
|
left: 3.5rem;
|
|
195
197
|
}
|
|
196
198
|
}
|
|
197
|
-
|
|
199
|
+
|
|
198
200
|
&--no-label {
|
|
199
201
|
margin-right: .25rem !important;
|
|
200
202
|
|
|
@@ -206,11 +208,11 @@ div {
|
|
|
206
208
|
}
|
|
207
209
|
|
|
208
210
|
//default and main
|
|
209
|
-
&-default input:checked,
|
|
211
|
+
&-default input:checked,
|
|
210
212
|
input:checked + span.custom-toggle-slider {
|
|
211
213
|
border: 1px solid $color-primary;
|
|
212
214
|
background-color: $color-primary;
|
|
213
|
-
|
|
215
|
+
|
|
214
216
|
&::before{
|
|
215
217
|
background-color: $color-light--lighten;
|
|
216
218
|
}
|
|
@@ -381,7 +383,7 @@ div {
|
|
|
381
383
|
transform: rotateX(180deg);
|
|
382
384
|
// transform: rotate(180deg);
|
|
383
385
|
transition: transform .35s ease-in-out;
|
|
384
|
-
|
|
386
|
+
|
|
385
387
|
}
|
|
386
388
|
}
|
|
387
389
|
}
|
|
@@ -414,4 +416,4 @@ span.el-radio {
|
|
|
414
416
|
}
|
|
415
417
|
}
|
|
416
418
|
}
|
|
417
|
-
}
|
|
419
|
+
}
|