quasar-ui-sellmate-ui-kit 2.2.33 → 2.3.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 +142 -142
- package/dist/index.common.js +3 -3
- package/dist/index.css +2 -2
- package/dist/index.esm.js +3 -3
- package/dist/index.min.css +2 -2
- package/dist/index.rtl.css +2 -2
- package/dist/index.rtl.min.css +2 -2
- package/dist/index.umd.js +3558 -3550
- package/dist/index.umd.min.js +3 -3
- package/package.json +75 -75
- package/src/components/SBreadcrumbs.vue +55 -55
- package/src/components/SButton.vue +206 -206
- package/src/components/SButtonGroup.vue +41 -41
- package/src/components/SCaution.vue +102 -102
- package/src/components/SCheckbox.vue +123 -123
- package/src/components/SChip.vue +99 -99
- package/src/components/SDate.vue +717 -717
- package/src/components/SDateAutoRangePicker.vue +341 -341
- package/src/components/SDatePicker.vue +472 -472
- package/src/components/SDateRange.vue +470 -470
- package/src/components/SDateRangePicker.vue +660 -660
- package/src/components/SDateTimePicker.vue +349 -349
- package/src/components/SDialog.vue +250 -250
- package/src/components/SDropdown.vue +216 -216
- package/src/components/SEditor.vue +490 -490
- package/src/components/SFilePicker.vue +207 -207
- package/src/components/SHelp.vue +146 -146
- package/src/components/SInput.vue +343 -343
- package/src/components/SInputCounter.vue +46 -46
- package/src/components/SInputNumber.vue +179 -179
- package/src/components/SList.vue +29 -29
- package/src/components/SMarkupTable.vue +141 -141
- package/src/components/SPagination.vue +266 -266
- package/src/components/SRadio.vue +78 -78
- package/src/components/SRouteTab.vue +67 -67
- package/src/components/SSelect.vue +294 -294
- package/src/components/SSelectCheckbox.vue +222 -225
- package/src/components/SSelectCustom.vue +25 -17
- package/src/components/SSelectGroupCheckbox.vue +235 -235
- package/src/components/SSelectSearch.vue +261 -261
- package/src/components/SSelectSearchAutoComplete.vue +172 -172
- package/src/components/SSelectSearchCheckbox.vue +356 -356
- package/src/components/SStringToInput.vue +66 -66
- package/src/components/STab.vue +80 -80
- package/src/components/STableTree.vue +208 -208
- package/src/components/STimePicker.vue +159 -159
- package/src/components/SToggle.vue +68 -68
- package/src/components/STooltip.vue +209 -209
- package/src/components/SelelctItem.vue +21 -21
- package/src/components/TimePickerCard.vue +352 -352
- package/src/composables/date.js +11 -11
- package/src/composables/modelBinder.js +13 -13
- package/src/composables/table/use-navigator.js +110 -110
- package/src/composables/table/use-resizable.js +80 -80
- package/src/css/app.scss +90 -90
- package/src/css/extends.scss +154 -154
- package/src/css/quasar.variables.scss +189 -189
- package/src/index.common.js +1 -1
- package/src/index.esm.js +4 -4
- package/src/index.scss +9 -9
- package/src/index.umd.js +3 -3
- package/src/vue-plugin.js +92 -92
|
@@ -1,159 +1,159 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="s-time-picker flex no-wrap items-center rounded-borders bg-white"
|
|
4
|
-
:class="disabled && 's-time-picker-disabled'"
|
|
5
|
-
>
|
|
6
|
-
<div v-if="insideLabel" class="inside-label bg-Grey_Lighten-5 full-height flex flex-center">
|
|
7
|
-
{{ insideLabel }}
|
|
8
|
-
</div>
|
|
9
|
-
|
|
10
|
-
<div
|
|
11
|
-
class="time-picker full-width flex no-wrap items-center text-Grey_Darken-4 q-pl-sm"
|
|
12
|
-
:style="range ? 'min-width: 179px' : 'min-width: 122px;'"
|
|
13
|
-
>
|
|
14
|
-
<q-icon :name="clockIcon" size="20px" color="Grey_Darken-1" />
|
|
15
|
-
<div v-if="range" class="content">
|
|
16
|
-
<span class="cursor-pointer">
|
|
17
|
-
{{ timeFormat(model.from) }}
|
|
18
|
-
<q-menu v-if="!disabled" :offset="[0, 10]" class="time-picker-menu">
|
|
19
|
-
<time-picker-card
|
|
20
|
-
:lang="lang"
|
|
21
|
-
:useSecond="useSecond"
|
|
22
|
-
v-model="model.from"
|
|
23
|
-
@update:modelValue="handleModel"
|
|
24
|
-
/>
|
|
25
|
-
</q-menu>
|
|
26
|
-
</span>
|
|
27
|
-
<span class="q-mx-sm">~</span>
|
|
28
|
-
<span class="cursor-pointer">
|
|
29
|
-
{{ timeFormat(model.to) }}
|
|
30
|
-
<q-menu v-if="!disabled" :offset="[0, 10]" class="time-picker-menu">
|
|
31
|
-
<time-picker-card
|
|
32
|
-
:lang="lang"
|
|
33
|
-
:useSecond="useSecond"
|
|
34
|
-
v-model="model.to"
|
|
35
|
-
@update:modelValue="handleModel"
|
|
36
|
-
/>
|
|
37
|
-
</q-menu>
|
|
38
|
-
</span>
|
|
39
|
-
</div>
|
|
40
|
-
<div v-else class="cursor-pointer content">
|
|
41
|
-
{{ timeFormat(model) }}
|
|
42
|
-
<q-menu v-if="!disabled" :offset="[0, 10]" class="time-picker-menu">
|
|
43
|
-
<time-picker-card
|
|
44
|
-
:lang="lang"
|
|
45
|
-
:useSecond="useSecond"
|
|
46
|
-
v-model="model"
|
|
47
|
-
@update:modelValue="handleModel"
|
|
48
|
-
/>
|
|
49
|
-
</q-menu>
|
|
50
|
-
</div>
|
|
51
|
-
</div>
|
|
52
|
-
</div>
|
|
53
|
-
</template>
|
|
54
|
-
|
|
55
|
-
<script>
|
|
56
|
-
import { defineComponent, ref } from 'vue';
|
|
57
|
-
import { QIcon, QMenu, date } from 'quasar';
|
|
58
|
-
import { clockIcon } from '../assets/icons.js';
|
|
59
|
-
import TimePickerCard from './TimePickerCard.vue';
|
|
60
|
-
|
|
61
|
-
export default defineComponent({
|
|
62
|
-
name: 'STimePicker',
|
|
63
|
-
components: {
|
|
64
|
-
QIcon,
|
|
65
|
-
QMenu,
|
|
66
|
-
TimePickerCard,
|
|
67
|
-
},
|
|
68
|
-
props: {
|
|
69
|
-
modelValue: {
|
|
70
|
-
type: [String, Object],
|
|
71
|
-
},
|
|
72
|
-
range: {
|
|
73
|
-
type: Boolean,
|
|
74
|
-
default: true,
|
|
75
|
-
},
|
|
76
|
-
disabled: {
|
|
77
|
-
type: Boolean,
|
|
78
|
-
default: false,
|
|
79
|
-
},
|
|
80
|
-
insideLabel: {
|
|
81
|
-
type: String,
|
|
82
|
-
default: '',
|
|
83
|
-
},
|
|
84
|
-
lang: {
|
|
85
|
-
type: String,
|
|
86
|
-
default: 'ko',
|
|
87
|
-
},
|
|
88
|
-
useSecond: {
|
|
89
|
-
type: Boolean,
|
|
90
|
-
default: false,
|
|
91
|
-
},
|
|
92
|
-
},
|
|
93
|
-
emits: ['update:modelValue'],
|
|
94
|
-
setup(props, { emit }) {
|
|
95
|
-
const model = ref(props.modelValue);
|
|
96
|
-
const language = { ko: { am: '오전', pm: '오후' }, en: { am: 'AM', pm: 'PM' }, ja: { am: '午前', pm: '午後' } };
|
|
97
|
-
|
|
98
|
-
function timeFormat(time) {
|
|
99
|
-
const timeRegex = props.useSecond ? /(\d{2}):(\d{2}):(\d{2})/ : /(\d{2}):(\d{2})/;
|
|
100
|
-
const timeUnits = time.match(timeRegex).slice(1, 4);
|
|
101
|
-
const modelDate = date.buildDate({
|
|
102
|
-
hour: +timeUnits[0],
|
|
103
|
-
minute: +timeUnits[1],
|
|
104
|
-
second: +timeUnits[2] || 0,
|
|
105
|
-
});
|
|
106
|
-
const amPmModelTimeUnits = date.formatDate(modelDate, 'hh:mm:ss');
|
|
107
|
-
return `${+timeUnits[0] < 12 ? language[props.lang].am : language[props.lang].pm} ${
|
|
108
|
-
props.useSecond ? amPmModelTimeUnits : amPmModelTimeUnits.slice(0, 5)
|
|
109
|
-
}`;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
function handleModel() {
|
|
113
|
-
emit('update:modelValue', model.value);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
return {
|
|
117
|
-
model,
|
|
118
|
-
clockIcon,
|
|
119
|
-
handleModel,
|
|
120
|
-
timeFormat,
|
|
121
|
-
};
|
|
122
|
-
},
|
|
123
|
-
});
|
|
124
|
-
</script>
|
|
125
|
-
|
|
126
|
-
<style lang="scss">
|
|
127
|
-
@import '../css/quasar.variables.scss';
|
|
128
|
-
|
|
129
|
-
.s-time-picker {
|
|
130
|
-
width: fit-content;
|
|
131
|
-
height: 28px;
|
|
132
|
-
border: 1px solid $Grey_Lighten-1;
|
|
133
|
-
> .inside-label {
|
|
134
|
-
border-right: 1px solid $Grey_Lighten-1;
|
|
135
|
-
padding: 0 12px;
|
|
136
|
-
}
|
|
137
|
-
> .time-picker {
|
|
138
|
-
> .content {
|
|
139
|
-
width: 100%;
|
|
140
|
-
text-align: center;
|
|
141
|
-
margin-right: 4px;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
&:hover {
|
|
145
|
-
background: $Grey_Lighten-5;
|
|
146
|
-
}
|
|
147
|
-
&.s-time-picker-disabled {
|
|
148
|
-
background: $Grey_Lighten-4 !important;
|
|
149
|
-
border: 1px solid $Grey_Lighten-2;
|
|
150
|
-
cursor: not-allowed !important;
|
|
151
|
-
> .time-picker {
|
|
152
|
-
color: $Grey_Default !important;
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
.time-picker-menu {
|
|
157
|
-
border-radius: 8px !important;
|
|
158
|
-
}
|
|
159
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="s-time-picker flex no-wrap items-center rounded-borders bg-white"
|
|
4
|
+
:class="disabled && 's-time-picker-disabled'"
|
|
5
|
+
>
|
|
6
|
+
<div v-if="insideLabel" class="inside-label bg-Grey_Lighten-5 full-height flex flex-center">
|
|
7
|
+
{{ insideLabel }}
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<div
|
|
11
|
+
class="time-picker full-width flex no-wrap items-center text-Grey_Darken-4 q-pl-sm"
|
|
12
|
+
:style="range ? 'min-width: 179px' : 'min-width: 122px;'"
|
|
13
|
+
>
|
|
14
|
+
<q-icon :name="clockIcon" size="20px" color="Grey_Darken-1" />
|
|
15
|
+
<div v-if="range" class="content">
|
|
16
|
+
<span class="cursor-pointer">
|
|
17
|
+
{{ timeFormat(model.from) }}
|
|
18
|
+
<q-menu v-if="!disabled" :offset="[0, 10]" class="time-picker-menu">
|
|
19
|
+
<time-picker-card
|
|
20
|
+
:lang="lang"
|
|
21
|
+
:useSecond="useSecond"
|
|
22
|
+
v-model="model.from"
|
|
23
|
+
@update:modelValue="handleModel"
|
|
24
|
+
/>
|
|
25
|
+
</q-menu>
|
|
26
|
+
</span>
|
|
27
|
+
<span class="q-mx-sm">~</span>
|
|
28
|
+
<span class="cursor-pointer">
|
|
29
|
+
{{ timeFormat(model.to) }}
|
|
30
|
+
<q-menu v-if="!disabled" :offset="[0, 10]" class="time-picker-menu">
|
|
31
|
+
<time-picker-card
|
|
32
|
+
:lang="lang"
|
|
33
|
+
:useSecond="useSecond"
|
|
34
|
+
v-model="model.to"
|
|
35
|
+
@update:modelValue="handleModel"
|
|
36
|
+
/>
|
|
37
|
+
</q-menu>
|
|
38
|
+
</span>
|
|
39
|
+
</div>
|
|
40
|
+
<div v-else class="cursor-pointer content">
|
|
41
|
+
{{ timeFormat(model) }}
|
|
42
|
+
<q-menu v-if="!disabled" :offset="[0, 10]" class="time-picker-menu">
|
|
43
|
+
<time-picker-card
|
|
44
|
+
:lang="lang"
|
|
45
|
+
:useSecond="useSecond"
|
|
46
|
+
v-model="model"
|
|
47
|
+
@update:modelValue="handleModel"
|
|
48
|
+
/>
|
|
49
|
+
</q-menu>
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
</template>
|
|
54
|
+
|
|
55
|
+
<script>
|
|
56
|
+
import { defineComponent, ref } from 'vue';
|
|
57
|
+
import { QIcon, QMenu, date } from 'quasar';
|
|
58
|
+
import { clockIcon } from '../assets/icons.js';
|
|
59
|
+
import TimePickerCard from './TimePickerCard.vue';
|
|
60
|
+
|
|
61
|
+
export default defineComponent({
|
|
62
|
+
name: 'STimePicker',
|
|
63
|
+
components: {
|
|
64
|
+
QIcon,
|
|
65
|
+
QMenu,
|
|
66
|
+
TimePickerCard,
|
|
67
|
+
},
|
|
68
|
+
props: {
|
|
69
|
+
modelValue: {
|
|
70
|
+
type: [String, Object],
|
|
71
|
+
},
|
|
72
|
+
range: {
|
|
73
|
+
type: Boolean,
|
|
74
|
+
default: true,
|
|
75
|
+
},
|
|
76
|
+
disabled: {
|
|
77
|
+
type: Boolean,
|
|
78
|
+
default: false,
|
|
79
|
+
},
|
|
80
|
+
insideLabel: {
|
|
81
|
+
type: String,
|
|
82
|
+
default: '',
|
|
83
|
+
},
|
|
84
|
+
lang: {
|
|
85
|
+
type: String,
|
|
86
|
+
default: 'ko',
|
|
87
|
+
},
|
|
88
|
+
useSecond: {
|
|
89
|
+
type: Boolean,
|
|
90
|
+
default: false,
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
emits: ['update:modelValue'],
|
|
94
|
+
setup(props, { emit }) {
|
|
95
|
+
const model = ref(props.modelValue);
|
|
96
|
+
const language = { ko: { am: '오전', pm: '오후' }, en: { am: 'AM', pm: 'PM' }, ja: { am: '午前', pm: '午後' } };
|
|
97
|
+
|
|
98
|
+
function timeFormat(time) {
|
|
99
|
+
const timeRegex = props.useSecond ? /(\d{2}):(\d{2}):(\d{2})/ : /(\d{2}):(\d{2})/;
|
|
100
|
+
const timeUnits = time.match(timeRegex).slice(1, 4);
|
|
101
|
+
const modelDate = date.buildDate({
|
|
102
|
+
hour: +timeUnits[0],
|
|
103
|
+
minute: +timeUnits[1],
|
|
104
|
+
second: +timeUnits[2] || 0,
|
|
105
|
+
});
|
|
106
|
+
const amPmModelTimeUnits = date.formatDate(modelDate, 'hh:mm:ss');
|
|
107
|
+
return `${+timeUnits[0] < 12 ? language[props.lang].am : language[props.lang].pm} ${
|
|
108
|
+
props.useSecond ? amPmModelTimeUnits : amPmModelTimeUnits.slice(0, 5)
|
|
109
|
+
}`;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
function handleModel() {
|
|
113
|
+
emit('update:modelValue', model.value);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
return {
|
|
117
|
+
model,
|
|
118
|
+
clockIcon,
|
|
119
|
+
handleModel,
|
|
120
|
+
timeFormat,
|
|
121
|
+
};
|
|
122
|
+
},
|
|
123
|
+
});
|
|
124
|
+
</script>
|
|
125
|
+
|
|
126
|
+
<style lang="scss">
|
|
127
|
+
@import '../css/quasar.variables.scss';
|
|
128
|
+
|
|
129
|
+
.s-time-picker {
|
|
130
|
+
width: fit-content;
|
|
131
|
+
height: 28px;
|
|
132
|
+
border: 1px solid $Grey_Lighten-1;
|
|
133
|
+
> .inside-label {
|
|
134
|
+
border-right: 1px solid $Grey_Lighten-1;
|
|
135
|
+
padding: 0 12px;
|
|
136
|
+
}
|
|
137
|
+
> .time-picker {
|
|
138
|
+
> .content {
|
|
139
|
+
width: 100%;
|
|
140
|
+
text-align: center;
|
|
141
|
+
margin-right: 4px;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
&:hover {
|
|
145
|
+
background: $Grey_Lighten-5;
|
|
146
|
+
}
|
|
147
|
+
&.s-time-picker-disabled {
|
|
148
|
+
background: $Grey_Lighten-4 !important;
|
|
149
|
+
border: 1px solid $Grey_Lighten-2;
|
|
150
|
+
cursor: not-allowed !important;
|
|
151
|
+
> .time-picker {
|
|
152
|
+
color: $Grey_Default !important;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
.time-picker-menu {
|
|
157
|
+
border-radius: 8px !important;
|
|
158
|
+
}
|
|
159
|
+
</style>
|
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<q-toggle color="positive" dense class="s-toggle" />
|
|
3
|
-
</template>
|
|
4
|
-
|
|
5
|
-
<script>
|
|
6
|
-
import { defineComponent } from 'vue';
|
|
7
|
-
import { QToggle } from 'quasar';
|
|
8
|
-
|
|
9
|
-
export default defineComponent({
|
|
10
|
-
name: 'SToggle',
|
|
11
|
-
components: {
|
|
12
|
-
QToggle,
|
|
13
|
-
},
|
|
14
|
-
});
|
|
15
|
-
</script>
|
|
16
|
-
|
|
17
|
-
<style lang="scss">
|
|
18
|
-
@import "../css/quasar.variables.scss";
|
|
19
|
-
.s-toggle {
|
|
20
|
-
height: $default-content-height;
|
|
21
|
-
.q-toggle__inner {
|
|
22
|
-
padding: 0;
|
|
23
|
-
width: 36px;
|
|
24
|
-
height: $default-content-height;
|
|
25
|
-
.q-toggle__track {
|
|
26
|
-
width: inherit;
|
|
27
|
-
height: $default-content-height;
|
|
28
|
-
background: $Grey_Lighten-2;
|
|
29
|
-
border-radius: 12px;
|
|
30
|
-
margin-right: 0;
|
|
31
|
-
opacity: 1;
|
|
32
|
-
}
|
|
33
|
-
.q-toggle__thumb {
|
|
34
|
-
font-size: $default-font;
|
|
35
|
-
width: $default-icon-size;
|
|
36
|
-
height: $default-icon-size;
|
|
37
|
-
top: 2px;
|
|
38
|
-
left: 2px;
|
|
39
|
-
}
|
|
40
|
-
&--truthy {
|
|
41
|
-
.q-toggle__track {
|
|
42
|
-
background: $positive;
|
|
43
|
-
}
|
|
44
|
-
.q-toggle__thumb {
|
|
45
|
-
left: 1.5em;
|
|
46
|
-
color: white;
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.disabled.s-toggle {
|
|
54
|
-
border: none;
|
|
55
|
-
background: none !important;
|
|
56
|
-
opacity: 1 !important;
|
|
57
|
-
.q-toggle__inner {
|
|
58
|
-
.q-toggle__track {
|
|
59
|
-
background: $Grey_Lighten-4;
|
|
60
|
-
}
|
|
61
|
-
&--truthy {
|
|
62
|
-
.q-toggle__track {
|
|
63
|
-
background: $Blue_C_Lighten-4;
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<q-toggle color="positive" dense class="s-toggle" />
|
|
3
|
+
</template>
|
|
4
|
+
|
|
5
|
+
<script>
|
|
6
|
+
import { defineComponent } from 'vue';
|
|
7
|
+
import { QToggle } from 'quasar';
|
|
8
|
+
|
|
9
|
+
export default defineComponent({
|
|
10
|
+
name: 'SToggle',
|
|
11
|
+
components: {
|
|
12
|
+
QToggle,
|
|
13
|
+
},
|
|
14
|
+
});
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<style lang="scss">
|
|
18
|
+
@import "../css/quasar.variables.scss";
|
|
19
|
+
.s-toggle {
|
|
20
|
+
height: $default-content-height;
|
|
21
|
+
.q-toggle__inner {
|
|
22
|
+
padding: 0;
|
|
23
|
+
width: 36px;
|
|
24
|
+
height: $default-content-height;
|
|
25
|
+
.q-toggle__track {
|
|
26
|
+
width: inherit;
|
|
27
|
+
height: $default-content-height;
|
|
28
|
+
background: $Grey_Lighten-2;
|
|
29
|
+
border-radius: 12px;
|
|
30
|
+
margin-right: 0;
|
|
31
|
+
opacity: 1;
|
|
32
|
+
}
|
|
33
|
+
.q-toggle__thumb {
|
|
34
|
+
font-size: $default-font;
|
|
35
|
+
width: $default-icon-size;
|
|
36
|
+
height: $default-icon-size;
|
|
37
|
+
top: 2px;
|
|
38
|
+
left: 2px;
|
|
39
|
+
}
|
|
40
|
+
&--truthy {
|
|
41
|
+
.q-toggle__track {
|
|
42
|
+
background: $positive;
|
|
43
|
+
}
|
|
44
|
+
.q-toggle__thumb {
|
|
45
|
+
left: 1.5em;
|
|
46
|
+
color: white;
|
|
47
|
+
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.disabled.s-toggle {
|
|
54
|
+
border: none;
|
|
55
|
+
background: none !important;
|
|
56
|
+
opacity: 1 !important;
|
|
57
|
+
.q-toggle__inner {
|
|
58
|
+
.q-toggle__track {
|
|
59
|
+
background: $Grey_Lighten-4;
|
|
60
|
+
}
|
|
61
|
+
&--truthy {
|
|
62
|
+
.q-toggle__track {
|
|
63
|
+
background: $Blue_C_Lighten-4;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
</style>
|