@dmsej108/design-system 2.2.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/dist/components/Badge/Badge.d.ts +13 -0
- package/dist/components/Badge/Badge.d.ts.map +1 -0
- package/dist/components/Badge/index.d.ts +3 -0
- package/dist/components/Badge/index.d.ts.map +1 -0
- package/dist/components/BaseButton/BaseButton.d.ts +14 -0
- package/dist/components/BaseButton/BaseButton.d.ts.map +1 -0
- package/dist/components/BaseButton/index.d.ts +3 -0
- package/dist/components/BaseButton/index.d.ts.map +1 -0
- package/dist/components/Button/Button.d.ts +14 -0
- package/dist/components/Button/Button.d.ts.map +1 -0
- package/dist/components/Button/index.d.ts +3 -0
- package/dist/components/Button/index.d.ts.map +1 -0
- package/dist/components/Card/Card.d.ts +13 -0
- package/dist/components/Card/Card.d.ts.map +1 -0
- package/dist/components/Card/index.d.ts +3 -0
- package/dist/components/Card/index.d.ts.map +1 -0
- package/dist/components/Checkbox/Checkbox.d.ts +30 -0
- package/dist/components/Checkbox/Checkbox.d.ts.map +1 -0
- package/dist/components/Checkbox/index.d.ts +3 -0
- package/dist/components/Checkbox/index.d.ts.map +1 -0
- package/dist/components/Chip/Chip.d.ts +17 -0
- package/dist/components/Chip/Chip.d.ts.map +1 -0
- package/dist/components/Chip/index.d.ts +3 -0
- package/dist/components/Chip/index.d.ts.map +1 -0
- package/dist/components/DatePicker/DatePicker.d.ts +18 -0
- package/dist/components/DatePicker/DatePicker.d.ts.map +1 -0
- package/dist/components/DatePicker/index.d.ts +3 -0
- package/dist/components/DatePicker/index.d.ts.map +1 -0
- package/dist/components/FileInput/FileInput.d.ts +19 -0
- package/dist/components/FileInput/FileInput.d.ts.map +1 -0
- package/dist/components/FileInput/index.d.ts +3 -0
- package/dist/components/FileInput/index.d.ts.map +1 -0
- package/dist/components/Icon/Icon.d.ts +17 -0
- package/dist/components/Icon/Icon.d.ts.map +1 -0
- package/dist/components/Icon/index.d.ts +3 -0
- package/dist/components/Icon/index.d.ts.map +1 -0
- package/dist/components/Input/Input.d.ts +14 -0
- package/dist/components/Input/Input.d.ts.map +1 -0
- package/dist/components/Input/index.d.ts +3 -0
- package/dist/components/Input/index.d.ts.map +1 -0
- package/dist/components/Modal/Modal.d.ts +18 -0
- package/dist/components/Modal/Modal.d.ts.map +1 -0
- package/dist/components/Modal/index.d.ts +3 -0
- package/dist/components/Modal/index.d.ts.map +1 -0
- package/dist/components/Pagination/Pagination.d.ts +11 -0
- package/dist/components/Pagination/Pagination.d.ts.map +1 -0
- package/dist/components/Pagination/index.d.ts +3 -0
- package/dist/components/Pagination/index.d.ts.map +1 -0
- package/dist/components/Radio/Radio.d.ts +25 -0
- package/dist/components/Radio/Radio.d.ts.map +1 -0
- package/dist/components/Radio/index.d.ts +3 -0
- package/dist/components/Radio/index.d.ts.map +1 -0
- package/dist/components/Select/Select.d.ts +19 -0
- package/dist/components/Select/Select.d.ts.map +1 -0
- package/dist/components/Select/index.d.ts +3 -0
- package/dist/components/Select/index.d.ts.map +1 -0
- package/dist/components/Tab/Tab.d.ts +18 -0
- package/dist/components/Tab/Tab.d.ts.map +1 -0
- package/dist/components/Tab/index.d.ts +3 -0
- package/dist/components/Tab/index.d.ts.map +1 -0
- package/dist/components/Table/Table.d.ts +23 -0
- package/dist/components/Table/Table.d.ts.map +1 -0
- package/dist/components/Table/index.d.ts +3 -0
- package/dist/components/Table/index.d.ts.map +1 -0
- package/dist/components/Textarea/Textarea.d.ts +15 -0
- package/dist/components/Textarea/Textarea.d.ts.map +1 -0
- package/dist/components/Textarea/index.d.ts +3 -0
- package/dist/components/Textarea/index.d.ts.map +1 -0
- package/dist/components/Toast/Toast.d.ts +32 -0
- package/dist/components/Toast/Toast.d.ts.map +1 -0
- package/dist/components/Toast/index.d.ts +3 -0
- package/dist/components/Toast/index.d.ts.map +1 -0
- package/dist/components/Typography/Typography.d.ts +10 -0
- package/dist/components/Typography/Typography.d.ts.map +1 -0
- package/dist/components/Typography/index.d.ts +3 -0
- package/dist/components/Typography/index.d.ts.map +1 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +39 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +1407 -0
- package/dist/index.js.map +1 -0
- package/package.json +76 -0
- package/src/styles/base/common.css +2060 -0
- package/src/styles/base/ellipsis.xml +1 -0
- package/src/styles/base/fonts.css +39 -0
- package/src/styles/base/layout.css +864 -0
- package/src/styles/base/reset.css +241 -0
- package/src/styles/components/breadcrumb.css +39 -0
- package/src/styles/components/button.css +423 -0
- package/src/styles/components/dashboard.css +970 -0
- package/src/styles/components/ellipsis.xml +1 -0
- package/src/styles/components/form.css +744 -0
- package/src/styles/components/loading.css +93 -0
- package/src/styles/components/login.css +405 -0
- package/src/styles/components/modal.css +218 -0
- package/src/styles/components/operate.css +85 -0
- package/src/styles/components/tab.css +80 -0
- package/src/styles/components/table.css +1024 -0
- package/src/styles/components/tree.css +284 -0
- package/src/styles/img/kb_logo.png +0 -0
- package/src/styles/index.css +18 -0
- package/src/styles/swiper.min.css +658 -0
- package/src/tokens/Tokens.stories.tsx +185 -0
- package/src/tokens/index.css +295 -0
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
h1,
|
|
2
|
+
h2,
|
|
3
|
+
h3,
|
|
4
|
+
h4,
|
|
5
|
+
h5,
|
|
6
|
+
h6,
|
|
7
|
+
html,
|
|
8
|
+
body,
|
|
9
|
+
div,
|
|
10
|
+
span,
|
|
11
|
+
applet,
|
|
12
|
+
object,
|
|
13
|
+
iframe,
|
|
14
|
+
p,
|
|
15
|
+
blockquote,
|
|
16
|
+
pre,
|
|
17
|
+
a,
|
|
18
|
+
abbr,
|
|
19
|
+
acronym,
|
|
20
|
+
address,
|
|
21
|
+
big,
|
|
22
|
+
cite,
|
|
23
|
+
code,
|
|
24
|
+
del,
|
|
25
|
+
dfn,
|
|
26
|
+
em,
|
|
27
|
+
font,
|
|
28
|
+
img,
|
|
29
|
+
ins,
|
|
30
|
+
kbd,
|
|
31
|
+
q,
|
|
32
|
+
s,
|
|
33
|
+
samp,
|
|
34
|
+
small,
|
|
35
|
+
strike,
|
|
36
|
+
sub,
|
|
37
|
+
sup,
|
|
38
|
+
tt,
|
|
39
|
+
var,
|
|
40
|
+
b,
|
|
41
|
+
i,
|
|
42
|
+
center,
|
|
43
|
+
dl,
|
|
44
|
+
dt,
|
|
45
|
+
dd,
|
|
46
|
+
ol,
|
|
47
|
+
ul,
|
|
48
|
+
li,
|
|
49
|
+
fieldset,
|
|
50
|
+
form,
|
|
51
|
+
label,
|
|
52
|
+
legend,
|
|
53
|
+
table,
|
|
54
|
+
caption,
|
|
55
|
+
tbody,
|
|
56
|
+
tfoot,
|
|
57
|
+
thead,
|
|
58
|
+
tr,
|
|
59
|
+
th,
|
|
60
|
+
td,
|
|
61
|
+
article,
|
|
62
|
+
aside,
|
|
63
|
+
audio,
|
|
64
|
+
canvas,
|
|
65
|
+
details,
|
|
66
|
+
figcaption,
|
|
67
|
+
figure,
|
|
68
|
+
footer,
|
|
69
|
+
header,
|
|
70
|
+
mark,
|
|
71
|
+
menu,
|
|
72
|
+
meter,
|
|
73
|
+
nav,
|
|
74
|
+
output,
|
|
75
|
+
progress,
|
|
76
|
+
section,
|
|
77
|
+
summary,
|
|
78
|
+
time,
|
|
79
|
+
video {
|
|
80
|
+
margin: 0;
|
|
81
|
+
padding: 0;
|
|
82
|
+
border: 0;
|
|
83
|
+
box-sizing: border-box;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
input,
|
|
87
|
+
select,
|
|
88
|
+
textarea,
|
|
89
|
+
button {
|
|
90
|
+
margin: 0;
|
|
91
|
+
box-sizing: border-box;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
h1,
|
|
95
|
+
h2,
|
|
96
|
+
h3,
|
|
97
|
+
h4,
|
|
98
|
+
h5,
|
|
99
|
+
h6 {
|
|
100
|
+
color: var(--strong-txt-color);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
article,
|
|
104
|
+
aside,
|
|
105
|
+
details,
|
|
106
|
+
figcaption,
|
|
107
|
+
figure,
|
|
108
|
+
footer,
|
|
109
|
+
header,
|
|
110
|
+
hgroup,
|
|
111
|
+
menu,
|
|
112
|
+
nav,
|
|
113
|
+
section {
|
|
114
|
+
display: block;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
legend,
|
|
118
|
+
caption {
|
|
119
|
+
position: absolute;
|
|
120
|
+
overflow: hidden;
|
|
121
|
+
width: 0;
|
|
122
|
+
height: 0;
|
|
123
|
+
color: transparent;
|
|
124
|
+
clip: rect(0 0 0 0);
|
|
125
|
+
opacity: 0;
|
|
126
|
+
font-size: 0;
|
|
127
|
+
z-index: -1;
|
|
128
|
+
text-indent: -100%;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
li {
|
|
132
|
+
list-style: none;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
code {
|
|
136
|
+
font-family: inherit;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
table {
|
|
140
|
+
width: 100%;
|
|
141
|
+
border-spacing: 0;
|
|
142
|
+
border-collapse: collapse;
|
|
143
|
+
table-layout: fixed;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
a {
|
|
147
|
+
text-decoration: none;
|
|
148
|
+
color: inherit;
|
|
149
|
+
cursor: pointer;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
a[href*='tel'] {
|
|
153
|
+
cursor: default;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
button,
|
|
157
|
+
input[type='button'] {
|
|
158
|
+
border: none;
|
|
159
|
+
background: none;
|
|
160
|
+
cursor: pointer;
|
|
161
|
+
letter-spacing: inherit;
|
|
162
|
+
padding: 0;
|
|
163
|
+
color: inherit;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
optgroup,
|
|
167
|
+
pre,
|
|
168
|
+
input[type='date'],
|
|
169
|
+
input[type='datetime-local'],
|
|
170
|
+
input[type='month'],
|
|
171
|
+
input[type='time'] {
|
|
172
|
+
font-family: inherit;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
i,
|
|
176
|
+
em {
|
|
177
|
+
font-style: normal;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
hr {
|
|
181
|
+
margin: 2rem 0;
|
|
182
|
+
border: 0;
|
|
183
|
+
border-bottom: 0.1rem solid #ddd;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
sub {
|
|
187
|
+
vertical-align: 0;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
iframe,
|
|
191
|
+
textarea {
|
|
192
|
+
width: 100%;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
::placeholder {
|
|
196
|
+
font-size: 12px;
|
|
197
|
+
color: var(--placeholder-txt-color);
|
|
198
|
+
opacity: 1;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
::-webkit-input-placeholder {
|
|
202
|
+
font-size: 12px;
|
|
203
|
+
color: var(--placeholder-txt-color);
|
|
204
|
+
opacity: 1;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
:-moz-placeholder {
|
|
208
|
+
font-size: 12px;
|
|
209
|
+
color: var(--placeholder-txt-color);
|
|
210
|
+
opacity: 1;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
::-moz-placeholder {
|
|
214
|
+
font-size: 12px;
|
|
215
|
+
color: var(--placeholder-txt-color);
|
|
216
|
+
opacity: 1;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
:-ms-input-placeholder {
|
|
220
|
+
font-size: 12px;
|
|
221
|
+
color: var(--placeholder-txt-color);
|
|
222
|
+
opacity: 1;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/*****************************************************************
|
|
226
|
+
scroll custom
|
|
227
|
+
*****************************************************************/
|
|
228
|
+
::-webkit-scrollbar {
|
|
229
|
+
width: 10px;
|
|
230
|
+
height: 10px;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
::-webkit-scrollbar-thumb {
|
|
234
|
+
background: #d2d2d2;
|
|
235
|
+
border-radius: 10px;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
::-webkit-scrollbar-track {
|
|
239
|
+
background: #ebebeb;
|
|
240
|
+
border-radius: 10px;
|
|
241
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.breadcrumb {
|
|
2
|
+
display: flex;
|
|
3
|
+
position: absolute;
|
|
4
|
+
top: 0;
|
|
5
|
+
right: 40px;
|
|
6
|
+
padding: 0;
|
|
7
|
+
margin: 0;
|
|
8
|
+
background-color: transparent;
|
|
9
|
+
}
|
|
10
|
+
.breadcrumb .breadcrumb-item {
|
|
11
|
+
font-size: 12px;
|
|
12
|
+
color: #767676;
|
|
13
|
+
}
|
|
14
|
+
.breadcrumb .breadcrumb-item:first-child {
|
|
15
|
+
position: relative;
|
|
16
|
+
padding-left: 18px;
|
|
17
|
+
}
|
|
18
|
+
.breadcrumb .breadcrumb-item:first-child::before {
|
|
19
|
+
content: '';
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: 1px;
|
|
22
|
+
left: 0;
|
|
23
|
+
width: 16px;
|
|
24
|
+
height: 16px;
|
|
25
|
+
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 7.41418L12 12H10V9.99997C10 8.8954 9.10457 7.99997 8 7.99997C6.89543 7.99997 6 8.8954 6 9.99997V12H4V7.41418L8 3.41418L12 7.41418ZM7 12V9.99997C7 9.44769 7.44772 8.99997 8 8.99997C8.55228 8.99997 9 9.44769 9 9.99997V12H7ZM6.4536 13H4C3.44772 13 3 12.5523 3 12V7.41418C3 7.14897 3.10536 6.89461 3.29289 6.70708L7.29289 2.70708C7.68342 2.31655 8.31658 2.31655 8.70711 2.70708L12.7071 6.70708C12.8946 6.89461 13 7.14897 13 7.41418V12C13 12.5523 12.5523 13 12 13H9.5464C9.54608 13 9.54577 13 9.54545 13H6.45455C6.45423 13 6.45392 13 6.4536 13Z' fill='%23767676'/%3E%3C/svg%3E");
|
|
26
|
+
}
|
|
27
|
+
.breadcrumb .breadcrumb-item + .breadcrumb-item {
|
|
28
|
+
position: relative;
|
|
29
|
+
padding-left: 20px;
|
|
30
|
+
}
|
|
31
|
+
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
|
|
32
|
+
content: '';
|
|
33
|
+
position: absolute;
|
|
34
|
+
top: 3px;
|
|
35
|
+
left: 4px;
|
|
36
|
+
width: 12px;
|
|
37
|
+
height: 12px;
|
|
38
|
+
background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.99976 2L7.99976 6L3.99976 10' stroke='%23767676'/%3E%3C/svg%3E");
|
|
39
|
+
}
|
|
@@ -0,0 +1,423 @@
|
|
|
1
|
+
.btn {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
align-items: center;
|
|
5
|
+
border-width: 1px;
|
|
6
|
+
border-style: solid;
|
|
7
|
+
border-radius: 3px;
|
|
8
|
+
background-color: #fff;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.btn.inline {
|
|
12
|
+
display: inline-block;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.btn:hover:not(:disabled) {
|
|
16
|
+
background-color: #f2f2f2;
|
|
17
|
+
color: #444;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.btn:disabled {
|
|
21
|
+
border-color: #ebebeb;
|
|
22
|
+
color: #ababab;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.btn.full {
|
|
26
|
+
width: 100%;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.btn.posi {
|
|
30
|
+
border-color: #253349;
|
|
31
|
+
background-color: #253349;
|
|
32
|
+
color: #fff;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.btn.posi:hover:not(:disabled) {
|
|
36
|
+
background-color: #464646;
|
|
37
|
+
color: #fff;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.btn.posi:disabled {
|
|
41
|
+
background-color: #ebebeb;
|
|
42
|
+
color: #999;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.btn-sl:not([class*='wp-']) {
|
|
46
|
+
min-width: 120px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.btn-sl {
|
|
50
|
+
height: 40px;
|
|
51
|
+
line-height: 40px;
|
|
52
|
+
padding: 0 15px;
|
|
53
|
+
border-color: #222;
|
|
54
|
+
background-color: #fff;
|
|
55
|
+
font-weight: bold;
|
|
56
|
+
font-size: 14px;
|
|
57
|
+
color: #222;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.btn-sl+.btn-sl {
|
|
61
|
+
margin-left: 10px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.btn-slm {
|
|
65
|
+
padding: 0px 10px;
|
|
66
|
+
height: 32px;
|
|
67
|
+
border-color: #c0c0c0;
|
|
68
|
+
font-size: 12px;
|
|
69
|
+
color: #444;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.btn-slm [class*='ico-'] {
|
|
73
|
+
display: block;
|
|
74
|
+
width: 20px;
|
|
75
|
+
height: 20px;
|
|
76
|
+
margin-right: 4px;
|
|
77
|
+
background-size: 20px 20px;
|
|
78
|
+
background-position: 50% 50%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.btn-slm.sg [class*='ico-'] {
|
|
82
|
+
margin-right: 0;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.btn-slm .ico-arrow {
|
|
86
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3EArtboard-51%3C/title%3E%3Cg id='Down-2' data-name='Down'%3E%3Cpath d='M16.924,9.617A1,1,0,0,0,16,9H8a1,1,0,0,0-.707,1.707l4,4a1,1,0,0,0,1.414,0l4-4A1,1,0,0,0,16.924,9.617Z' style='fill:%23444444'/%3E%3C/g%3E%3C/svg%3E");
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.btn-slm.fold .ico-arrow {
|
|
90
|
+
transform: rotate(180deg);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.btn-sm {
|
|
94
|
+
padding: 0px 10px;
|
|
95
|
+
height: 30px;
|
|
96
|
+
border-color: #444;
|
|
97
|
+
font-weight: bold;
|
|
98
|
+
font-size: 12px;
|
|
99
|
+
color: #444;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.btn-sm+.btn-sm {
|
|
103
|
+
margin-left: 6px;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.flex-column>.btn-sm+.btn-sm {
|
|
107
|
+
margin-left: 0;
|
|
108
|
+
margin-top: 6px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.btn-sm [class*='ico-'] {
|
|
112
|
+
display: block;
|
|
113
|
+
width: 20px;
|
|
114
|
+
height: 20px;
|
|
115
|
+
margin-right: 4px;
|
|
116
|
+
background-size: 20px 20px;
|
|
117
|
+
background-position: 50% 50%;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.btn-sm [class*='ico-'].right {
|
|
121
|
+
margin: 0 0 0 4px;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.btn-sm [class*='ico-'].sg {
|
|
125
|
+
margin: 0 -6px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.btn-sm:disabled [class*='ico-'] {
|
|
129
|
+
opacity: 0.6;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.btn-sm .ico-search {
|
|
133
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9165 11.6666H12.2581L12.0248 11.4416C13.0248 10.275 13.5415 8.68331 13.2581 6.99164C12.8665 4.67497 10.9331 2.82497 8.59979 2.54164C5.07479 2.10831 2.10812 5.07497 2.54146 8.59997C2.82479 10.9333 4.67479 12.8666 6.99146 13.2583C8.68312 13.5416 10.2748 13.025 11.4415 12.025L11.6665 12.2583V12.9166L15.2081 16.4583C15.5498 16.8 16.1081 16.8 16.4498 16.4583C16.7915 16.1166 16.7915 15.5583 16.4498 15.2166L12.9165 11.6666ZM7.91646 11.6666C5.84146 11.6666 4.16646 9.99164 4.16646 7.91664C4.16646 5.84164 5.84146 4.16664 7.91646 4.16664C9.99146 4.16664 11.6665 5.84164 11.6665 7.91664C11.6665 9.99164 9.99146 11.6666 7.91646 11.6666Z' fill='%23444444'/%3E%3C/svg%3E");
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.btn-sm .ico-reload {
|
|
137
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.7079 5.29249C13.3496 3.93416 11.4246 3.15083 9.30794 3.36749C6.24961 3.67583 3.73294 6.15916 3.39128 9.21749C2.93294 13.2592 6.05794 16.6675 9.99961 16.6675C12.6579 16.6675 14.9413 15.1092 16.0079 12.8675C16.2746 12.3092 15.8746 11.6675 15.2579 11.6675C14.9496 11.6675 14.6579 11.8342 14.5246 12.1092C13.5829 14.1342 11.3246 15.4175 8.85794 14.8675C7.00794 14.4592 5.51628 12.9508 5.12461 11.1008C4.42461 7.86749 6.88294 5.00083 9.99961 5.00083C11.3829 5.00083 12.6163 5.57583 13.5163 6.48416L12.2579 7.74249C11.7329 8.26749 12.0996 9.16749 12.8413 9.16749H15.8329C16.2913 9.16749 16.6663 8.79249 16.6663 8.33416V5.34249C16.6663 4.60083 15.7663 4.22583 15.2413 4.75083L14.7079 5.29249Z' fill='%23444444'/%3E%3C/svg%3E");
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.btn-sm .ico-next {
|
|
141
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00043 7.27278L12.7284 12.0008L8.00043 16.7288L9.27243 18.0008L15.2724 12.0008L9.27243 6.00078L8.00043 7.27278Z' fill='%23444444'/%3E%3C/svg%3E");
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.btn-sm .ico-prev {
|
|
145
|
+
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.0001 16.7272L11.2721 11.9992L16.0001 7.27121L14.7281 5.99921L8.72808 11.9992L14.7281 17.9992L16.0001 16.7272Z' fill='%23444444'/%3E%3C/svg%3E");
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.btn-sm .ico-arrow {
|
|
149
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3EArtboard-51%3C/title%3E%3Cg id='Down-2' data-name='Down'%3E%3Cpath d='M16.924,9.617A1,1,0,0,0,16,9H8a1,1,0,0,0-.707,1.707l4,4a1,1,0,0,0,1.414,0l4-4A1,1,0,0,0,16.924,9.617Z' style='fill:%23444444'/%3E%3C/g%3E%3C/svg%3E");
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.btn-sm.fold .ico-arrow {
|
|
153
|
+
transform: rotate(180deg);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.btn-sm .ico-add {
|
|
157
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='4' width='2' height='12' fill='black'/%3E%3Crect x='16' y='9' width='2' height='12' transform='rotate(90 16 9)' fill='black'/%3E%3C/svg%3E");
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.btn-ss {
|
|
161
|
+
padding: 0px 10px;
|
|
162
|
+
height: 28px;
|
|
163
|
+
border-color: #767676;
|
|
164
|
+
font-weight: 500;
|
|
165
|
+
font-size: 12px;
|
|
166
|
+
color: #444;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.btn-ss.active {
|
|
170
|
+
border-color: #fed700;
|
|
171
|
+
background-color: #fed700;
|
|
172
|
+
color: #222;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.btn-ss+.btn-ss {
|
|
176
|
+
margin-left: 6px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.btn-ss [class*='ico-'] {
|
|
180
|
+
display: block;
|
|
181
|
+
width: 12px;
|
|
182
|
+
height: 12px;
|
|
183
|
+
margin-right: 4px;
|
|
184
|
+
background-size: 12px 12px;
|
|
185
|
+
background-position: 50% 50%;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.btn-ss [class*='ico-'].right {
|
|
189
|
+
margin: 0 0 0 4px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.btn-ss .ico-plus {
|
|
193
|
+
background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='1.00003' width='2' height='10' fill='%23767676'/%3E%3Crect x='11' y='5.00003' width='2' height='10' transform='rotate(90 11 5.00003)' fill='%23767676'/%3E%3C/svg%3E");
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.btn-ss .ico-minus {
|
|
197
|
+
background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='11' y='5.00003' width='2' height='10' transform='rotate(90 11 5.00003)' fill='%23767676'/%3E%3C/svg%3E");
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.btn-ss .ico-all-open {
|
|
201
|
+
background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.25757 3.82843L6.086 1L8.91442 3.82843' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.91431 7.82843L6.08588 10.6569L3.25745 7.82843' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.08579 9.17169V1' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.btn-opt {
|
|
205
|
+
height: 28px;
|
|
206
|
+
padding: 0 8px;
|
|
207
|
+
border-color: var(--base-bd-color);
|
|
208
|
+
font-size: 12px;
|
|
209
|
+
color: #767676;
|
|
210
|
+
background-position: 50% 50%;
|
|
211
|
+
background-repeat: no-repeat;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.btn-opt+.btn-opt {
|
|
215
|
+
margin-left: 6px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.btn-opt [class*='ico-'] {
|
|
219
|
+
display: block;
|
|
220
|
+
width: 16px;
|
|
221
|
+
height: 16px;
|
|
222
|
+
margin-right: 4px;
|
|
223
|
+
background-size: 16px 16px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.btn-opt:disabled [class*='ico-'] {
|
|
227
|
+
opacity: 0.6;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.btn-opt .ico-download {
|
|
231
|
+
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.34375 12H12.6562V13.3438H3.34375V12ZM12.6562 6L8 10.6562L3.34375 6H6V2H10V6H12.6562Z' fill='%23222222'/%3E%3C/svg%3E");
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.btn-opt-ico {
|
|
235
|
+
height: 28px;
|
|
236
|
+
padding: 0 13px;
|
|
237
|
+
border-color: var(--base-bd-color);
|
|
238
|
+
background-position: 50% 50%;
|
|
239
|
+
background-repeat: no-repeat;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.btn-opt-ico.filter {
|
|
243
|
+
background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='6' height='6' fill='%23767676'/%3E%3Crect x='8' width='6' height='6' fill='%23767676'/%3E%3Crect y='8' width='6' height='6' fill='%23767676'/%3E%3Crect x='8' y='8' width='6' height='6' fill='%23767676'/%3E%3C/svg%3E");
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.btn-opt-ico.close {
|
|
247
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 4L4 16.5' stroke='%238C949E' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round'/%3E%3Cpath d='M4 4L16.5 16.5' stroke='%238C949E' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.btn-opt-ico.fit {
|
|
251
|
+
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1H15V7' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 1L9 7' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 15H1V9' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 9L1 15' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.btn-opt-ico.fit.full {
|
|
255
|
+
background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 9H7V15' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 9L1 15' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 7H9V1' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15 1L9 7' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.btn-next-wrok {
|
|
259
|
+
min-width: 120px;
|
|
260
|
+
height: 40px;
|
|
261
|
+
line-height: 40px;
|
|
262
|
+
padding: 0 35px;
|
|
263
|
+
border-color: #ccc;
|
|
264
|
+
background-color: #f2f2f2;
|
|
265
|
+
font-weight: bold;
|
|
266
|
+
font-size: 14px;
|
|
267
|
+
color: #222;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.btn-next-wrok span {
|
|
271
|
+
display: inline-block;
|
|
272
|
+
position: relative;
|
|
273
|
+
padding-right: 24px;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.btn-next-wrok span::after {
|
|
277
|
+
content: '';
|
|
278
|
+
position: absolute;
|
|
279
|
+
top: 10px;
|
|
280
|
+
right: 0;
|
|
281
|
+
width: 20px;
|
|
282
|
+
height: 20px;
|
|
283
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 15.5L12.9167 10.0833L7.5 4.66667' stroke='%23222222' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.btn-bottom-set {
|
|
287
|
+
position: relative;
|
|
288
|
+
margin-top: 20px;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.btn-bottom-set .right {
|
|
292
|
+
position: absolute;
|
|
293
|
+
top: 0;
|
|
294
|
+
right: 0;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.btn-add-info-toggle, .btn-add-info {
|
|
298
|
+
display: inline-block;
|
|
299
|
+
position: relative;
|
|
300
|
+
height: 30px;
|
|
301
|
+
line-height: 30px;
|
|
302
|
+
padding: 0 15px 0 36px;
|
|
303
|
+
border: 1px solid #d2d2d2;
|
|
304
|
+
background-color: #f2f2f2;
|
|
305
|
+
border-radius: 30px;
|
|
306
|
+
font-size: 12px;
|
|
307
|
+
font-weight: bold;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.btn-add-info.dep2 {
|
|
311
|
+
border: 1px solid #FFCC00;
|
|
312
|
+
background-color: #FFFBED;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.btn-add-info.dep3 {
|
|
316
|
+
border: 1px solid #89E393;
|
|
317
|
+
background-color: #F0FCF1;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.btn-add-info-toggle::before {
|
|
321
|
+
content: '';
|
|
322
|
+
position: absolute;
|
|
323
|
+
top: 4px;
|
|
324
|
+
left: 11px;
|
|
325
|
+
width: 20px;
|
|
326
|
+
height: 20px;
|
|
327
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ctitle%3EArtboard-51%3C/title%3E%3Cg id='Down-2' data-name='Down'%3E%3Cpath d='M16.924,9.617A1,1,0,0,0,16,9H8a1,1,0,0,0-.707,1.707l4,4a1,1,0,0,0,1.414,0l4-4A1,1,0,0,0,16.924,9.617Z' style='fill:%23444444'/%3E%3C/g%3E%3C/svg%3E");
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.btn-add-info::before {
|
|
331
|
+
content: '';
|
|
332
|
+
position: absolute;
|
|
333
|
+
top: 6px;
|
|
334
|
+
left: 13px;
|
|
335
|
+
width: 16px;
|
|
336
|
+
height: 16px;
|
|
337
|
+
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='9' y='4' width='2' height='12' style='fill:%23444444' /%3E%3Crect x='16' y='9' width='2' height='12' transform='rotate(90 16 9)' style='fill:%23444444' /%3E%3C/svg%3E");
|
|
338
|
+
background-size: 16px 16px;
|
|
339
|
+
background-position: 50% 50%;
|
|
340
|
+
background-repeat: no-repeat;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.btn-add-info-toggle.active::before {
|
|
344
|
+
transform: rotate(180deg);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/*****************************************************************
|
|
348
|
+
tag
|
|
349
|
+
*****************************************************************/
|
|
350
|
+
.ui-tag {
|
|
351
|
+
display: inline-block;
|
|
352
|
+
height: 20px;
|
|
353
|
+
line-height: 20px;
|
|
354
|
+
padding: 0 10px;
|
|
355
|
+
font-size: 11px;
|
|
356
|
+
font-weight: bold;
|
|
357
|
+
color: #000;
|
|
358
|
+
text-align: center;
|
|
359
|
+
border-radius: 20px;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.ui-tag.s {
|
|
363
|
+
height: 16px;
|
|
364
|
+
line-height: 16px;
|
|
365
|
+
padding: 0 8px;
|
|
366
|
+
border-radius: 16px;
|
|
367
|
+
font-size: 10px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.ui-tag.l {
|
|
371
|
+
height: 32px;
|
|
372
|
+
line-height: 32px;
|
|
373
|
+
border-radius: 30px;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.ui-tag.bc1 {
|
|
377
|
+
background-color: #fed700;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.ui-tag.bc2 {
|
|
381
|
+
border: 1px solid #464646;
|
|
382
|
+
background-color: #fff;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.ui-tag.bc3 {
|
|
386
|
+
border: 1px solid #d2d2d2;
|
|
387
|
+
background-color: #fff;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.ui-mark {
|
|
391
|
+
display: inline-block;
|
|
392
|
+
height: 32px;
|
|
393
|
+
line-height: 32px;
|
|
394
|
+
padding: 0 10px;
|
|
395
|
+
background-color: #fff;
|
|
396
|
+
border: 1px solid #d2d2d2;
|
|
397
|
+
border-radius: 3px;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
/*****************************************************************
|
|
401
|
+
icon
|
|
402
|
+
*****************************************************************/
|
|
403
|
+
.ico-new {
|
|
404
|
+
display: inline-block;
|
|
405
|
+
width: 24px;
|
|
406
|
+
height: 12px;
|
|
407
|
+
background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 122.88 69.4' style='enable-background:new 0 0 122.88 69.4' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill-rule:evenodd;clip-rule:evenodd;%7D%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M7.85,0h107.18c4.32,0,7.85,3.53,7.85,7.85v53.69c0,4.32-3.53,7.85-7.85,7.85H7.85C3.53,69.4,0,65.87,0,61.55 V7.85C0,3.53,3.53,0,7.85,0L7.85,0z M44.22,14.59v39.37h-9.48l-5.63-17.9v17.9h-9.05V14.59h9.05l6.05,17.73V14.59H44.22 L44.22,14.59z M48.56,14.59h18.06v7.86h-7.21v7.52h6.74v7.47h-6.74v8.66h7.95v7.86H48.56V14.59L48.56,14.59z M111.18,14.59 l-4.83,39.37H92.86c-1.21-6.05-2.31-12.94-3.29-20.67c-0.45,3.33-1.46,10.22-3.03,20.67H73.13l-4.85-39.37h10.53l1.14,13.75 l1.1,13.29c0.41-6.88,1.41-15.89,3-27.04h11.21c0.13,1.17,0.52,5.5,1.15,13.01l1.22,14.98c0.64-9.53,1.65-18.86,3.03-27.99H111.18 L111.18,14.59z' style='fill:%23ff3232' /%3E%3C/g%3E%3C/svg%3E");
|
|
408
|
+
background-size: 24px 12px;
|
|
409
|
+
background-position: 50% 50%;
|
|
410
|
+
background-repeat: no-repeat;
|
|
411
|
+
vertical-align:text-top;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.ico-fix {
|
|
415
|
+
display: inline-block;
|
|
416
|
+
width: 20px;
|
|
417
|
+
height: 20px;
|
|
418
|
+
background-image: url("data:image/svg+xml,%3Csvg style='enable-background:new 0 0 91 91;' version='1.1' viewBox='0 0 91 91' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath d='M31.7,54.2h13.6v21.5h3.4V54.2h13.6c0.9,0,1.7-0.8,1.7-1.7v-4.7c0-3.4-2.6-6.3-5.9-6.7l-1-8.7c-0.1-0.8-0.8-1.5-1.7-1.5 c0,0,0,0,0,0l-16.7,0c-0.9,0-1.6,0.6-1.7,1.5l-1,8.6c-3.3,0.4-5.9,3.2-5.9,6.7v4.7C30,53.5,30.8,54.2,31.7,54.2z'/%3E%3Cpath d='M35.9,28.6h22.2c0.9,0,1.7-0.8,1.7-1.7v-3.6c0-3-2.5-5.5-5.5-5.5H39.7c-3,0-5.5,2.5-5.5,5.5v3.6 C34.2,27.9,35,28.6,35.9,28.6z'/%3E%3C/g%3E%3C/svg%3E");
|
|
419
|
+
background-size: 20px 20px;
|
|
420
|
+
background-position: 50% 50%;
|
|
421
|
+
background-repeat: no-repeat;
|
|
422
|
+
vertical-align: middle;
|
|
423
|
+
}
|