quasar-ui-sellmate-ui-kit 3.14.14 → 3.14.16
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/dist/index.common.js +2 -2
- package/dist/index.css +2868 -2859
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +2 -2
- package/dist/index.rtl.css +2868 -2859
- package/dist/index.rtl.min.css +2 -2
- package/dist/index.umd.js +438 -421
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/InputWithSearchIcon.vue +2 -2
- package/src/components/SBadge.vue +5 -5
- package/src/components/SBreadcrumbs.vue +26 -30
- package/src/components/SButton.vue +7 -4
- package/src/components/SButtonGroup.vue +21 -26
- package/src/components/SButtonToggle.vue +3 -3
- package/src/components/SCaution.vue +92 -98
- package/src/components/SCheckbox.vue +86 -87
- package/src/components/SChip.vue +63 -63
- package/src/components/SDate.vue +15 -15
- package/src/components/SDateAutoRangePicker.vue +101 -98
- package/src/components/SDatePicker.vue +19 -19
- package/src/components/SDateRange.vue +15 -25
- package/src/components/SDateRangePicker.vue +19 -20
- package/src/components/SDateTimePicker.vue +15 -23
- package/src/components/SDialog.vue +145 -169
- package/src/components/SDropdown.vue +6 -6
- package/src/components/SEditor.vue +2 -2
- package/src/components/SFilePicker.vue +10 -10
- package/src/components/SHelp.vue +4 -4
- package/src/components/SInput.vue +19 -19
- package/src/components/SInputNumber.vue +12 -12
- package/src/components/SMarkupTable.vue +89 -88
- package/src/components/SPagination.vue +11 -11
- package/src/components/SRadio.vue +52 -52
- package/src/components/SRouteTab.vue +3 -3
- package/src/components/SSelect.vue +9 -9
- package/src/components/SSelectCheckbox.vue +5 -5
- package/src/components/SSelectGroupCheckbox.vue +7 -7
- package/src/components/SSelectSearch.vue +2 -2
- package/src/components/SSelectSearchCheckbox.vue +5 -5
- package/src/components/STab.vue +6 -6
- package/src/components/STable.vue +9 -9
- package/src/components/STableTree.vue +10 -10
- package/src/components/STag.vue +17 -17
- package/src/components/STimePicker.vue +9 -9
- package/src/components/SToggle.vue +44 -45
- package/src/components/STooltip.vue +144 -142
- package/src/components/SYearMonthPicker.vue +8 -8
- package/src/components/TableTreeNode.vue +4 -4
- package/src/components/TimePickerCard.vue +11 -11
- package/src/composables/table/use-resizable.js +14 -4
- package/src/css/app.scss +24 -8
- package/src/css/default.scss +172 -141
- package/src/css/extends.scss +34 -13
- package/src/css/quasar.variables.scss +133 -121
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
dense
|
|
21
21
|
unelevated
|
|
22
22
|
:ripple="false"
|
|
23
|
-
color="
|
|
23
|
+
color="grey_20"
|
|
24
24
|
:icon="minusIcon"
|
|
25
25
|
@click="minusNumber"
|
|
26
26
|
/>
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
dense
|
|
30
30
|
unelevated
|
|
31
31
|
:ripple="false"
|
|
32
|
-
color="
|
|
32
|
+
color="grey_20"
|
|
33
33
|
:icon="plusIcon"
|
|
34
34
|
@click="plusNumber"
|
|
35
35
|
/>
|
|
@@ -96,19 +96,19 @@
|
|
|
96
96
|
padding: 0;
|
|
97
97
|
height: 28px;
|
|
98
98
|
&:before {
|
|
99
|
-
border: 1px solid $
|
|
99
|
+
border: 1px solid $grey_55;
|
|
100
100
|
}
|
|
101
101
|
&-container {
|
|
102
102
|
padding: $with-icon-padding;
|
|
103
103
|
height: $default-height;
|
|
104
104
|
.q-field__native {
|
|
105
|
-
color: $
|
|
105
|
+
color: $grey_90;
|
|
106
106
|
padding: 0;
|
|
107
107
|
font-weight: $default-font-weight;
|
|
108
108
|
font-size: $default-font;
|
|
109
109
|
}
|
|
110
110
|
input::placeholder {
|
|
111
|
-
color: $
|
|
111
|
+
color: $grey_55;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
width: 100%;
|
|
128
128
|
height: 100%;
|
|
129
129
|
.q-icon {
|
|
130
|
-
color: $
|
|
130
|
+
color: $grey_65;
|
|
131
131
|
font-size: $default-font;
|
|
132
132
|
}
|
|
133
133
|
}
|
|
@@ -139,11 +139,11 @@
|
|
|
139
139
|
}
|
|
140
140
|
.q-field__bottom {
|
|
141
141
|
padding: 8px 0px 0px 0px;
|
|
142
|
-
color: $
|
|
142
|
+
color: $grey_70;
|
|
143
143
|
font-size: $default-font;
|
|
144
144
|
.q-field__messages {
|
|
145
145
|
div[role='alert'] {
|
|
146
|
-
color: $
|
|
146
|
+
color: $red_70;
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
}
|
|
@@ -164,15 +164,15 @@
|
|
|
164
164
|
.q-field--disabled.s-input-number {
|
|
165
165
|
.q-field__inner {
|
|
166
166
|
.q-field__control {
|
|
167
|
-
background-color: $
|
|
168
|
-
color: $
|
|
167
|
+
background-color: $grey_20 !important;
|
|
168
|
+
color: $grey_65 !important;
|
|
169
169
|
&:before {
|
|
170
|
-
border: 1px solid $
|
|
170
|
+
border: 1px solid $grey_45;
|
|
171
171
|
}
|
|
172
172
|
&-container {
|
|
173
173
|
opacity: 1 !important;
|
|
174
174
|
.q-field__native {
|
|
175
|
-
color: $
|
|
175
|
+
color: $grey_65;
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
.q-field__append {
|
|
@@ -22,121 +22,122 @@
|
|
|
22
22
|
</template>
|
|
23
23
|
|
|
24
24
|
<script>
|
|
25
|
-
import { defineComponent } from 'vue';
|
|
26
|
-
import { QMarkupTable, QInnerLoading } from 'quasar';
|
|
25
|
+
import { defineComponent } from 'vue';
|
|
26
|
+
import { QMarkupTable, QInnerLoading } from 'quasar';
|
|
27
27
|
|
|
28
|
-
export default defineComponent({
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
props: {
|
|
34
|
-
separator: {
|
|
35
|
-
type: String,
|
|
36
|
-
default: 'Horizontal',
|
|
28
|
+
export default defineComponent({
|
|
29
|
+
name: 'SMarkupTable',
|
|
30
|
+
components: {
|
|
31
|
+
QMarkupTable,
|
|
32
|
+
QInnerLoading,
|
|
37
33
|
},
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
34
|
+
props: {
|
|
35
|
+
separator: {
|
|
36
|
+
type: String,
|
|
37
|
+
default: 'Horizontal',
|
|
38
|
+
},
|
|
39
|
+
header: {
|
|
40
|
+
type: String,
|
|
41
|
+
default: 'top',
|
|
42
|
+
},
|
|
43
|
+
noHover: {
|
|
44
|
+
type: Boolean,
|
|
45
|
+
default: false,
|
|
46
|
+
},
|
|
41
47
|
},
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
default: false,
|
|
48
|
+
setup() {
|
|
49
|
+
return {};
|
|
45
50
|
},
|
|
46
|
-
}
|
|
47
|
-
setup() {
|
|
48
|
-
return {};
|
|
49
|
-
},
|
|
50
|
-
});
|
|
51
|
+
});
|
|
51
52
|
</script>
|
|
52
53
|
|
|
53
54
|
<style lang="scss" scoped>
|
|
54
|
-
@import
|
|
55
|
+
@import '../css/quasar.variables.scss';
|
|
55
56
|
|
|
56
|
-
.s-markup-table {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
57
|
+
.s-markup-table {
|
|
58
|
+
border-radius: 8px !important;
|
|
59
|
+
border: 1px solid $grey_30;
|
|
60
|
+
:deep(> .q-table) {
|
|
61
|
+
> thead {
|
|
62
|
+
min-height: 0;
|
|
63
|
+
> tr {
|
|
64
|
+
height: $table-tr-height;
|
|
65
|
+
> th {
|
|
66
|
+
padding: $table-th-padding;
|
|
67
|
+
font-size: $default-font;
|
|
68
|
+
font-weight: $font-weight-md;
|
|
69
|
+
word-break: keep-all;
|
|
70
|
+
white-space: nowrap;
|
|
71
|
+
}
|
|
70
72
|
}
|
|
71
73
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
min-height: 0px;
|
|
76
|
-
height: $table-tr-height;
|
|
77
|
-
> th {
|
|
78
|
-
font-size: $default-font;
|
|
79
|
-
}
|
|
80
|
-
> td {
|
|
74
|
+
> tbody {
|
|
75
|
+
> tr {
|
|
76
|
+
min-height: 0px;
|
|
81
77
|
height: $table-tr-height;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
78
|
+
> th {
|
|
79
|
+
font-size: $default-font;
|
|
80
|
+
}
|
|
81
|
+
> td {
|
|
82
|
+
height: $table-tr-height;
|
|
83
|
+
padding: $table-td-padding;
|
|
84
|
+
font-size: $default-font;
|
|
85
|
+
&:before {
|
|
86
|
+
background: none;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
&:hover {
|
|
90
|
+
background-color: $grey_05;
|
|
86
91
|
}
|
|
87
|
-
}
|
|
88
|
-
&:hover {
|
|
89
|
-
background-color: $Grey_Lighten-6;
|
|
90
92
|
}
|
|
91
93
|
}
|
|
92
94
|
}
|
|
93
95
|
}
|
|
94
|
-
|
|
95
|
-
.
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
96
|
+
.s-markup-table.header-top {
|
|
97
|
+
:deep(> .q-table) {
|
|
98
|
+
thead {
|
|
99
|
+
background: $th-bg;
|
|
100
|
+
}
|
|
99
101
|
}
|
|
100
102
|
}
|
|
101
|
-
|
|
102
|
-
.
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
> tr {
|
|
106
|
-
> th {
|
|
107
|
-
background: $th-bg;
|
|
108
|
-
font-weight: $font-weight-lg;
|
|
109
|
-
border-bottom: 1px solid $Grey_Lighten-3;
|
|
110
|
-
padding: 0 16px;
|
|
111
|
-
&:not(:first-of-type) {
|
|
112
|
-
border-left: 1px solid $Grey_Lighten-3;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
> th:not(:first-of-type) {
|
|
116
|
-
border-left: 1px solid $Grey_Lighten-3;
|
|
117
|
-
}
|
|
118
|
-
&:last-of-type {
|
|
103
|
+
.s-markup-table.header-left {
|
|
104
|
+
:deep(> .q-table) {
|
|
105
|
+
> tbody {
|
|
106
|
+
> tr {
|
|
119
107
|
> th {
|
|
120
|
-
|
|
108
|
+
background: $th-bg;
|
|
109
|
+
font-weight: $font-weight-lg;
|
|
110
|
+
border-bottom: 1px solid $grey_30;
|
|
111
|
+
padding: 0 16px;
|
|
112
|
+
&:not(:first-of-type) {
|
|
113
|
+
border-left: 1px solid $grey_30;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
> th:not(:first-of-type) {
|
|
117
|
+
border-left: 1px solid $grey_30;
|
|
118
|
+
}
|
|
119
|
+
&:last-of-type {
|
|
120
|
+
> th {
|
|
121
|
+
border-bottom: none;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
> td {
|
|
125
|
+
padding: 0 12px;
|
|
121
126
|
}
|
|
122
|
-
}
|
|
123
|
-
> td {
|
|
124
|
-
padding: 0 12px;
|
|
125
127
|
}
|
|
126
128
|
}
|
|
127
129
|
}
|
|
128
130
|
}
|
|
129
|
-
|
|
130
|
-
.
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
> tr:hover {
|
|
134
|
-
background-color: transparent;
|
|
135
|
-
> td:before {
|
|
131
|
+
.s-markup-table.tr-no-hover {
|
|
132
|
+
:deep(> .q-table) {
|
|
133
|
+
> tbody {
|
|
134
|
+
> tr:hover {
|
|
136
135
|
background-color: transparent;
|
|
136
|
+
> td:before {
|
|
137
|
+
background-color: transparent;
|
|
138
|
+
}
|
|
137
139
|
}
|
|
138
140
|
}
|
|
139
141
|
}
|
|
140
142
|
}
|
|
141
|
-
}
|
|
142
143
|
</style>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
type="button"
|
|
16
16
|
align="center"
|
|
17
17
|
class="bg-transparent first-btn"
|
|
18
|
-
text-color="
|
|
18
|
+
text-color="grey_80"
|
|
19
19
|
:icon="paginationFirstIcon"
|
|
20
20
|
@click="updateModelValue('goFirst')"
|
|
21
21
|
/>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
type="button"
|
|
29
29
|
align="center"
|
|
30
30
|
class="left-btn"
|
|
31
|
-
text-color="
|
|
31
|
+
text-color="grey_80"
|
|
32
32
|
:icon="paginationLeftIcon"
|
|
33
33
|
@click="updateModelValue('goLeft')"
|
|
34
34
|
/>
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
unelevated
|
|
45
45
|
:ripple="false"
|
|
46
46
|
:label="pageNumber"
|
|
47
|
-
text-color="
|
|
47
|
+
text-color="grey_80"
|
|
48
48
|
type="button"
|
|
49
49
|
align="center"
|
|
50
50
|
@click="perPage > 1 ? updateModelValue(pageNumber) : null"
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
type="button"
|
|
73
73
|
align="center"
|
|
74
74
|
class="right-btn"
|
|
75
|
-
text-color="
|
|
75
|
+
text-color="grey_80"
|
|
76
76
|
:icon="paginationRightIcon"
|
|
77
77
|
@click="updateModelValue('goRight')"
|
|
78
78
|
/>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
type="button"
|
|
86
86
|
align="center"
|
|
87
87
|
class="last-btn"
|
|
88
|
-
text-color="
|
|
88
|
+
text-color="grey_80"
|
|
89
89
|
:icon="paginationLastIcon"
|
|
90
90
|
@click="updateModelValue('goLast')"
|
|
91
91
|
/>
|
|
@@ -233,7 +233,7 @@
|
|
|
233
233
|
justify-content: center;
|
|
234
234
|
&:hover {
|
|
235
235
|
&:before {
|
|
236
|
-
border: 1px solid $
|
|
236
|
+
border: 1px solid $oceanblue_70;
|
|
237
237
|
}
|
|
238
238
|
.q-focus-helper {
|
|
239
239
|
opacity: 0 !important;
|
|
@@ -244,10 +244,10 @@
|
|
|
244
244
|
}
|
|
245
245
|
.q-btn__content {
|
|
246
246
|
.q-icon {
|
|
247
|
-
color: $
|
|
247
|
+
color: $oceanblue_70;
|
|
248
248
|
}
|
|
249
249
|
> span {
|
|
250
|
-
color: $
|
|
250
|
+
color: $oceanblue_70;
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
}
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
}
|
|
287
287
|
.pagination-active-btn {
|
|
288
288
|
&:before {
|
|
289
|
-
background: $
|
|
289
|
+
background: $oceanblue_70 !important;
|
|
290
290
|
}
|
|
291
291
|
.q-btn__content {
|
|
292
292
|
> span {
|
|
@@ -302,10 +302,10 @@
|
|
|
302
302
|
}
|
|
303
303
|
.q-btn__content {
|
|
304
304
|
.q-icon {
|
|
305
|
-
color: $
|
|
305
|
+
color: $grey_65;
|
|
306
306
|
}
|
|
307
307
|
> span {
|
|
308
|
-
color: $
|
|
308
|
+
color: $grey_65;
|
|
309
309
|
}
|
|
310
310
|
}
|
|
311
311
|
}
|
|
@@ -9,70 +9,70 @@
|
|
|
9
9
|
</template>
|
|
10
10
|
|
|
11
11
|
<script>
|
|
12
|
-
import { QRadio } from 'quasar';
|
|
13
|
-
import { defineComponent } from 'vue';
|
|
12
|
+
import { QRadio } from 'quasar';
|
|
13
|
+
import { defineComponent } from 'vue';
|
|
14
14
|
|
|
15
|
-
export default defineComponent({
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
});
|
|
15
|
+
export default defineComponent({
|
|
16
|
+
name: 'SRadio',
|
|
17
|
+
components: {
|
|
18
|
+
QRadio,
|
|
19
|
+
},
|
|
20
|
+
props: {
|
|
21
|
+
length: Number,
|
|
22
|
+
},
|
|
23
|
+
});
|
|
24
24
|
</script>
|
|
25
25
|
|
|
26
26
|
<style lang="scss">
|
|
27
|
-
@import '../css/quasar.variables.scss';
|
|
27
|
+
@import '../css/quasar.variables.scss';
|
|
28
28
|
|
|
29
|
-
.s-radio {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
29
|
+
.s-radio {
|
|
30
|
+
& > .q-radio__inner {
|
|
31
|
+
min-width: $default-icon-size;
|
|
32
|
+
width: $default-icon-size;
|
|
33
|
+
height: $default-icon-size;
|
|
34
|
+
color: $grey_65;
|
|
35
|
+
&:before {
|
|
36
|
+
opacity: 0 !important;
|
|
37
|
+
}
|
|
38
|
+
&:hover {
|
|
39
|
+
color: $positive;
|
|
40
|
+
}
|
|
37
41
|
}
|
|
38
|
-
|
|
39
|
-
|
|
42
|
+
.q-radio__label {
|
|
43
|
+
padding-left: $default-icon-margin;
|
|
44
|
+
color: $grey_90;
|
|
45
|
+
line-height: $default-content-height;
|
|
40
46
|
}
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
&[aria-checked="true"] {
|
|
48
|
-
.q-radio__inner {
|
|
49
|
-
.q-radio__bg {
|
|
50
|
-
.q-radio__check {
|
|
51
|
-
transform: scale3d(1.2, 1.2, 1);
|
|
47
|
+
&[aria-checked='true'] {
|
|
48
|
+
.q-radio__inner {
|
|
49
|
+
.q-radio__bg {
|
|
50
|
+
.q-radio__check {
|
|
51
|
+
transform: scale3d(1.2, 1.2, 1);
|
|
52
|
+
}
|
|
52
53
|
}
|
|
53
54
|
}
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
57
|
+
.disabled.s-radio {
|
|
58
|
+
opacity: 1 !important;
|
|
59
|
+
border: none;
|
|
60
|
+
background: none !important;
|
|
61
|
+
.q-radio__inner {
|
|
62
|
+
color: $grey_45 !important;
|
|
63
|
+
background: $grey_20;
|
|
64
|
+
}
|
|
64
65
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
66
|
+
.radio-margin-sm {
|
|
67
|
+
margin-right: 20px;
|
|
68
|
+
&:last-of-type {
|
|
69
|
+
margin-right: 0;
|
|
70
|
+
}
|
|
70
71
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
72
|
+
.radio-margin-lg {
|
|
73
|
+
margin-right: 40px;
|
|
74
|
+
&:last-of-type {
|
|
75
|
+
margin-right: 0;
|
|
76
|
+
}
|
|
76
77
|
}
|
|
77
|
-
}
|
|
78
78
|
</style>
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
.s-route-tab {
|
|
31
31
|
padding: $tab-padding;
|
|
32
32
|
border-radius: $button-border-radius $button-border-radius 0 0;
|
|
33
|
-
border: 1px solid $
|
|
33
|
+
border: 1px solid $grey_45;
|
|
34
34
|
border-bottom: 1px solid $positive;
|
|
35
|
-
background: $
|
|
36
|
-
color: $
|
|
35
|
+
background: $grey_10;
|
|
36
|
+
color: $grey_65;
|
|
37
37
|
min-height: 0;
|
|
38
38
|
.q-tab__content {
|
|
39
39
|
padding: 0;
|
|
@@ -220,19 +220,19 @@
|
|
|
220
220
|
&.q-field--disabled {
|
|
221
221
|
.q-field__control > .q-field__prepend {
|
|
222
222
|
opacity: 1 !important;
|
|
223
|
-
border-right: 1px solid $
|
|
223
|
+
border-right: 1px solid $grey_45;
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
.q-field__prepend {
|
|
228
|
-
background-color: $
|
|
228
|
+
background-color: $grey_10;
|
|
229
229
|
height: auto;
|
|
230
|
-
border-right: 1px solid $
|
|
230
|
+
border-right: 1px solid $grey_55;
|
|
231
231
|
padding: $button-padding-sm;
|
|
232
232
|
.include-label {
|
|
233
233
|
font-size: $default-font;
|
|
234
234
|
font-weight: $default-font-weight;
|
|
235
|
-
color: $
|
|
235
|
+
color: $grey_90;
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
}
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
min-height: 0;
|
|
247
247
|
height: $default-height;
|
|
248
248
|
padding: $select-padding !important;
|
|
249
|
-
color: $
|
|
249
|
+
color: $grey_90;
|
|
250
250
|
white-space: nowrap;
|
|
251
251
|
overflow: hidden;
|
|
252
252
|
text-overflow: ellipsis;
|
|
@@ -276,12 +276,12 @@
|
|
|
276
276
|
@extend %select-menu-list;
|
|
277
277
|
.group-title {
|
|
278
278
|
opacity: 1 !important;
|
|
279
|
-
background: $
|
|
279
|
+
background: $grey_10 !important;
|
|
280
280
|
border: none;
|
|
281
|
-
border-top: 1px solid $
|
|
281
|
+
border-top: 1px solid $grey_30;
|
|
282
282
|
.q-item__section {
|
|
283
283
|
.q-item__label {
|
|
284
|
-
color: $
|
|
284
|
+
color: $grey_90 !important;
|
|
285
285
|
}
|
|
286
286
|
}
|
|
287
287
|
}
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
background: white !important;
|
|
292
292
|
border: none !important;
|
|
293
293
|
.q-item__section {
|
|
294
|
-
color: $
|
|
294
|
+
color: $grey_55 !important;
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
297
|
}
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<q-item-section side v-if="!opt.disable">
|
|
30
30
|
<s-checkbox :modelValue="selected" @update:modelValue="toggleOption(opt)" />
|
|
31
31
|
</q-item-section>
|
|
32
|
-
<q-item-section v-if="opt[optionGroup]" class="text-
|
|
32
|
+
<q-item-section v-if="opt[optionGroup]" class="text-grey_90 group-title">
|
|
33
33
|
{{ opt[optionGroup] }}
|
|
34
34
|
</q-item-section>
|
|
35
35
|
<q-item-section avatar v-if="opt.logo">
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
height: $default-height;
|
|
204
204
|
width: 100%;
|
|
205
205
|
padding: $select-padding !important;
|
|
206
|
-
color: $
|
|
206
|
+
color: $grey_90;
|
|
207
207
|
white-space: nowrap;
|
|
208
208
|
overflow: hidden;
|
|
209
209
|
text-overflow: ellipsis;
|
|
@@ -221,10 +221,10 @@
|
|
|
221
221
|
> .q-virtual-scroll__content {
|
|
222
222
|
> .q-item.disabled {
|
|
223
223
|
border: none;
|
|
224
|
-
color: $
|
|
224
|
+
color: $grey_90 !important;
|
|
225
225
|
opacity: 1 !important;
|
|
226
|
-
background: $
|
|
227
|
-
border-top: 1px solid $
|
|
226
|
+
background: $grey_10 !important;
|
|
227
|
+
border-top: 1px solid $grey_30 !important;
|
|
228
228
|
&:not(.q-manual-focusable):first-of-type {
|
|
229
229
|
border-top: none !important;
|
|
230
230
|
}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
</div>
|
|
28
28
|
<q-item v-if="options.length === filteredOptions.length" dense class="total-opt flex">
|
|
29
29
|
<q-item-section
|
|
30
|
-
class="s-px-sm s-py-xxs flex row s-gap-10 justify-start text-
|
|
30
|
+
class="s-px-sm s-py-xxs flex row s-gap-10 justify-start text-grey_90 cursor-pointer"
|
|
31
31
|
@click="toggleTotalOption(!isAllChecked)"
|
|
32
32
|
>
|
|
33
33
|
<s-checkbox :model-value="isAllChecked" @update:model-value="toggleTotalOption" />
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<template #option="{ opt }">
|
|
39
39
|
<q-item dense class="flex grouping-opt">
|
|
40
40
|
<q-item-section
|
|
41
|
-
class="s-px-sm s-py-xxs flex row justify-start text-
|
|
41
|
+
class="s-px-sm s-py-xxs flex row justify-start text-grey_90 cursor-pointer"
|
|
42
42
|
:class="opt[optionGroup] ? 'group-title' : 'group-content'"
|
|
43
43
|
@click="toggleItem(opt)"
|
|
44
44
|
><s-checkbox v-model="model" :val="opt" @update:model-value="updateItem(opt)" />{{
|
|
@@ -295,7 +295,7 @@
|
|
|
295
295
|
height: $default-height;
|
|
296
296
|
width: 100%;
|
|
297
297
|
padding: $select-padding !important;
|
|
298
|
-
color: $
|
|
298
|
+
color: $grey_90;
|
|
299
299
|
white-space: nowrap;
|
|
300
300
|
overflow: hidden;
|
|
301
301
|
text-overflow: ellipsis;
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
> .q-virtual-scroll__content {
|
|
323
323
|
> .q-item.grouping-opt {
|
|
324
324
|
border: none;
|
|
325
|
-
color: $
|
|
325
|
+
color: $grey_90 !important;
|
|
326
326
|
opacity: 1 !important;
|
|
327
327
|
height: auto;
|
|
328
328
|
padding: 0;
|
|
@@ -336,9 +336,9 @@
|
|
|
336
336
|
}
|
|
337
337
|
}
|
|
338
338
|
> .group-title {
|
|
339
|
-
background-color: $
|
|
339
|
+
background-color: $grey_10;
|
|
340
340
|
padding: 6px 12px;
|
|
341
|
-
border-top: 1px solid $
|
|
341
|
+
border-top: 1px solid $grey_30 !important;
|
|
342
342
|
line-height: 20px;
|
|
343
343
|
font-weight: 700;
|
|
344
344
|
&:first-of-type {
|
|
@@ -355,7 +355,7 @@
|
|
|
355
355
|
}
|
|
356
356
|
.q-item:not(.s-select-no-option) {
|
|
357
357
|
&:hover {
|
|
358
|
-
background-color: $
|
|
358
|
+
background-color: $brilliantblue_75 !important;
|
|
359
359
|
.q-item__section:not(.group-title) {
|
|
360
360
|
color: white !important;
|
|
361
361
|
.q-checkbox[aria-checked='true'] {
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
height: $default-height;
|
|
236
236
|
width: 100%;
|
|
237
237
|
padding: $select-padding !important;
|
|
238
|
-
color: $
|
|
238
|
+
color: $grey_90;
|
|
239
239
|
white-space: nowrap;
|
|
240
240
|
overflow: hidden;
|
|
241
241
|
text-overflow: ellipsis;
|
|
@@ -270,6 +270,6 @@
|
|
|
270
270
|
.disabled.s-select-option {
|
|
271
271
|
border: none;
|
|
272
272
|
background: none !important;
|
|
273
|
-
color: $
|
|
273
|
+
color: $grey_65 !important;
|
|
274
274
|
}
|
|
275
275
|
</style>
|