@dso-toolkit/core 49.0.2 → 50.0.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/cjs/dso-helpcenter-panel.cjs.entry.js +1 -1
- package/dist/cjs/dso-icon.cjs.entry.js +52 -50
- package/dist/cjs/dso-list-button.cjs.entry.js +114 -0
- package/dist/cjs/dso-map-controls.cjs.entry.js +2 -2
- package/dist/cjs/dso-modal.cjs.entry.js +14 -0
- package/dist/cjs/dso-progress-bar.cjs.entry.js +1 -1
- package/dist/cjs/dso-toolkit.cjs.js +1 -1
- package/dist/cjs/dso-viewer-grid.cjs.entry.js +2 -2
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/header/header.js +2 -2
- package/dist/collection/components/helpcenter-panel/helpcenter-panel.css +2 -2
- package/dist/collection/components/icon/icon.js +4 -0
- package/dist/collection/components/list-button/list-button.css +563 -0
- package/dist/collection/components/list-button/list-button.interfaces.js +1 -0
- package/dist/collection/components/list-button/list-button.js +303 -0
- package/dist/collection/components/map-controls/map-controls.css +57 -57
- package/dist/collection/components/map-controls/map-controls.js +1 -1
- package/dist/collection/components/modal/modal.js +31 -0
- package/dist/collection/components/progress-bar/progress-bar.css +4 -4
- package/dist/collection/components/tree-view/tree-view.js +2 -8
- package/dist/collection/components/viewer-grid/viewer-grid.css +8 -8
- package/dist/collection/components/viewer-grid/viewer-grid.js +1 -1
- package/dist/collection/index.js +1 -0
- package/dist/components/dso-helpcenter-panel.js +1 -1
- package/dist/components/dso-list-button.d.ts +11 -0
- package/dist/components/dso-list-button.js +144 -0
- package/dist/components/dso-map-controls.js +2 -2
- package/dist/components/dso-modal.js +15 -0
- package/dist/components/dso-progress-bar.js +1 -1
- package/dist/components/dso-viewer-grid.js +2 -2
- package/dist/components/icon.js +52 -50
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/dso-toolkit/dso-toolkit.esm.js +1 -1
- package/dist/dso-toolkit/p-34a3c0b3.entry.js +1 -0
- package/dist/dso-toolkit/{p-a4086aa3.entry.js → p-3b8cbd05.entry.js} +1 -1
- package/dist/dso-toolkit/{p-c96acfeb.entry.js → p-55142124.entry.js} +1 -1
- package/dist/dso-toolkit/{p-daee3252.entry.js → p-67c4987c.entry.js} +1 -1
- package/dist/dso-toolkit/p-7d6f0e03.entry.js +1 -0
- package/dist/dso-toolkit/p-92ad1cdb.entry.js +1 -0
- package/dist/dso-toolkit/p-c2157b55.entry.js +1 -0
- package/dist/esm/dso-helpcenter-panel.entry.js +1 -1
- package/dist/esm/dso-icon.entry.js +52 -50
- package/dist/esm/dso-list-button.entry.js +110 -0
- package/dist/esm/dso-map-controls.entry.js +2 -2
- package/dist/esm/dso-modal.entry.js +14 -0
- package/dist/esm/dso-progress-bar.entry.js +1 -1
- package/dist/esm/dso-toolkit.js +1 -1
- package/dist/esm/dso-viewer-grid.entry.js +2 -2
- package/dist/esm/loader.js +1 -1
- package/dist/types/components/header/header.d.ts +2 -2
- package/dist/types/components/list-button/list-button.d.ts +29 -0
- package/dist/types/components/list-button/list-button.interfaces.d.ts +10 -0
- package/dist/types/components/modal/modal.d.ts +3 -1
- package/dist/types/components/ozon-content/ozon-content-mapper.d.ts +1 -1
- package/dist/types/components/ozon-content/ozon-content-node-context.interface.d.ts +1 -1
- package/dist/types/components/ozon-content/ozon-content-node.interface.d.ts +1 -1
- package/dist/types/components/ozon-content/ozon-content.d.ts +1 -2
- package/dist/types/components/tree-view/tree-item.d.ts +1 -1
- package/dist/types/components/tree-view/tree-view.d.ts +2 -2
- package/dist/types/components.d.ts +54 -4
- package/dist/types/index.d.ts +1 -0
- package/package.json +4 -4
- package/dist/dso-toolkit/p-7f8be9bc.entry.js +0 -1
- package/dist/dso-toolkit/p-80575700.entry.js +0 -1
- package/dist/dso-toolkit/p-c9ad94a6.entry.js +0 -1
|
@@ -0,0 +1,563 @@
|
|
|
1
|
+
*,
|
|
2
|
+
*::after,
|
|
3
|
+
*::before {
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.sr-only {
|
|
8
|
+
position: absolute;
|
|
9
|
+
width: 1px;
|
|
10
|
+
height: 1px;
|
|
11
|
+
padding: 0;
|
|
12
|
+
margin: -1px;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
clip: rect(0, 0, 0, 0);
|
|
15
|
+
border: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.dso-manual-input-button {
|
|
19
|
+
cursor: text;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.dso-tertiary {
|
|
23
|
+
display: inline-block;
|
|
24
|
+
font-size: 1em;
|
|
25
|
+
font-weight: 500;
|
|
26
|
+
margin-bottom: 0;
|
|
27
|
+
text-decoration: none;
|
|
28
|
+
touch-action: manipulation;
|
|
29
|
+
text-align: left;
|
|
30
|
+
user-select: none;
|
|
31
|
+
vertical-align: middle;
|
|
32
|
+
border: 0;
|
|
33
|
+
color: #39870c;
|
|
34
|
+
line-height: 1;
|
|
35
|
+
padding: 0;
|
|
36
|
+
background-color: transparent;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
}
|
|
39
|
+
.dso-tertiary:focus, .dso-tertiary:focus-visible {
|
|
40
|
+
outline-offset: 2px;
|
|
41
|
+
}
|
|
42
|
+
.dso-tertiary:active {
|
|
43
|
+
outline: 0;
|
|
44
|
+
}
|
|
45
|
+
.dso-tertiary[disabled] {
|
|
46
|
+
color: #afcf9d;
|
|
47
|
+
}
|
|
48
|
+
.dso-tertiary[disabled].dso-spinner-left, .dso-tertiary[disabled].dso-spinner-right {
|
|
49
|
+
color: #39870c;
|
|
50
|
+
}
|
|
51
|
+
.dso-tertiary:not([disabled]):hover {
|
|
52
|
+
color: #676cb0;
|
|
53
|
+
text-decoration: underline;
|
|
54
|
+
text-underline-position: under;
|
|
55
|
+
}
|
|
56
|
+
.dso-tertiary:not([disabled]):active {
|
|
57
|
+
color: #676cb0;
|
|
58
|
+
}
|
|
59
|
+
.dso-tertiary.btn-align {
|
|
60
|
+
line-height: calc(1.5em - 1px);
|
|
61
|
+
padding: 11px 0;
|
|
62
|
+
position: relative;
|
|
63
|
+
}
|
|
64
|
+
.dso-tertiary.dso-spinner-left::before {
|
|
65
|
+
background-image: url("data:image/svg+xml,%3Csvg class='spinner' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E .spinner %7B animation: rotator 8s linear infinite; transform-origin: center; %7D @keyframes rotator %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D .path %7B stroke-dasharray: 265; stroke-dashoffset: 0; transform-origin: center; stroke: %2339870c; animation: dash 2s ease-in-out infinite; %7D @keyframes dash %7B 0%25 %7B stroke-dashoffset: 265; %7D 50%25 %7B stroke-dashoffset: 65; transform:rotate(90deg); %7D 100%25 %7B stroke-dashoffset: 265; transform:rotate(360deg); %7D %3C/style%3E%3Ccircle class='path' fill='none' stroke-width='10' stroke-linecap='butt' cx='50' cy='50' r='45'%3E%3C/circle%3E%3C/svg%3E");
|
|
66
|
+
background-repeat: no-repeat;
|
|
67
|
+
content: "";
|
|
68
|
+
display: inline-block;
|
|
69
|
+
height: 24px;
|
|
70
|
+
vertical-align: middle;
|
|
71
|
+
width: 24px;
|
|
72
|
+
margin-right: 8px;
|
|
73
|
+
}
|
|
74
|
+
.dso-tertiary.dso-spinner-right::after {
|
|
75
|
+
background-image: url("data:image/svg+xml,%3Csvg class='spinner' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E .spinner %7B animation: rotator 8s linear infinite; transform-origin: center; %7D @keyframes rotator %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D .path %7B stroke-dasharray: 265; stroke-dashoffset: 0; transform-origin: center; stroke: %2339870c; animation: dash 2s ease-in-out infinite; %7D @keyframes dash %7B 0%25 %7B stroke-dashoffset: 265; %7D 50%25 %7B stroke-dashoffset: 65; transform:rotate(90deg); %7D 100%25 %7B stroke-dashoffset: 265; transform:rotate(360deg); %7D %3C/style%3E%3Ccircle class='path' fill='none' stroke-width='10' stroke-linecap='butt' cx='50' cy='50' r='45'%3E%3C/circle%3E%3C/svg%3E");
|
|
76
|
+
background-repeat: no-repeat;
|
|
77
|
+
content: "";
|
|
78
|
+
display: inline-block;
|
|
79
|
+
height: 24px;
|
|
80
|
+
vertical-align: middle;
|
|
81
|
+
width: 24px;
|
|
82
|
+
margin-left: 8px;
|
|
83
|
+
}
|
|
84
|
+
.dso-tertiary dso-icon + span:not(.sr-only),
|
|
85
|
+
.dso-tertiary svg.di + span:not(.sr-only),
|
|
86
|
+
.dso-tertiary span:not(.sr-only) + dso-icon,
|
|
87
|
+
.dso-tertiary span:not(.sr-only) + svg.di {
|
|
88
|
+
margin-left: 8px;
|
|
89
|
+
}
|
|
90
|
+
.dso-tertiary svg.di.di-chevron-down + span:not(.sr-only),
|
|
91
|
+
.dso-tertiary svg.di.di-chevron-up + span:not(.sr-only),
|
|
92
|
+
.dso-tertiary span:not(.sr-only) + svg.di.di-chevron-down,
|
|
93
|
+
.dso-tertiary span:not(.sr-only) + svg.di.di-chevron-up {
|
|
94
|
+
margin-left: 4px;
|
|
95
|
+
}
|
|
96
|
+
.dso-tertiary dso-icon[icon=chevron-left] + span:not(.sr-only),
|
|
97
|
+
.dso-tertiary dso-icon[icon=chevron-right] + span:not(.sr-only),
|
|
98
|
+
.dso-tertiary svg.di.di-angle-down + span:not(.sr-only),
|
|
99
|
+
.dso-tertiary svg.di.di-angle-up + span:not(.sr-only),
|
|
100
|
+
.dso-tertiary span:not(.sr-only) + svg.di.di-angle-down,
|
|
101
|
+
.dso-tertiary span:not(.sr-only) + svg.di.di-angle-up,
|
|
102
|
+
.dso-tertiary span:not(.sr-only) + dso-icon[icon=chevron-left],
|
|
103
|
+
.dso-tertiary span:not(.sr-only) + dso-icon[icon=chevron-right] {
|
|
104
|
+
margin-left: 0;
|
|
105
|
+
}
|
|
106
|
+
.dso-tertiary dso-icon,
|
|
107
|
+
.dso-tertiary svg.di,
|
|
108
|
+
.dso-tertiary span {
|
|
109
|
+
vertical-align: middle;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.dso-input-number:not(.form-group) {
|
|
113
|
+
align-items: center;
|
|
114
|
+
display: flex;
|
|
115
|
+
flex-wrap: wrap;
|
|
116
|
+
}
|
|
117
|
+
.dso-input-number label {
|
|
118
|
+
width: 100%;
|
|
119
|
+
}
|
|
120
|
+
.dso-input-number .dso-input-step-counter {
|
|
121
|
+
align-self: center;
|
|
122
|
+
background-color: transparent;
|
|
123
|
+
border: 0;
|
|
124
|
+
display: inline-block;
|
|
125
|
+
height: 1.5rem;
|
|
126
|
+
text-align: center;
|
|
127
|
+
width: 1.5rem;
|
|
128
|
+
}
|
|
129
|
+
.dso-input-number .dso-input-step-counter:focus, .dso-input-number .dso-input-step-counter:active {
|
|
130
|
+
outline: 0;
|
|
131
|
+
}
|
|
132
|
+
.dso-input-number .dso-input-step-counter::-webkit-outer-spin-button, .dso-input-number .dso-input-step-counter::-webkit-inner-spin-button {
|
|
133
|
+
-webkit-appearance: none;
|
|
134
|
+
margin: 0;
|
|
135
|
+
}
|
|
136
|
+
.dso-input-number .dso-input-step-counter[type=number] {
|
|
137
|
+
-moz-appearance: textfield;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.dso-btn-group {
|
|
141
|
+
display: flex;
|
|
142
|
+
flex-direction: row;
|
|
143
|
+
}
|
|
144
|
+
.dso-btn-group.dso-disabled > * {
|
|
145
|
+
background-color: #fff;
|
|
146
|
+
border-color: #e5e5e5;
|
|
147
|
+
color: #666;
|
|
148
|
+
pointer-events: none;
|
|
149
|
+
}
|
|
150
|
+
.dso-btn-group > * {
|
|
151
|
+
border-radius: 0;
|
|
152
|
+
}
|
|
153
|
+
.dso-btn-group > *:first-child {
|
|
154
|
+
border-radius: 4px 0 0 4px;
|
|
155
|
+
}
|
|
156
|
+
.dso-btn-group > *:not(:first-child) {
|
|
157
|
+
border-left-style: none !important;
|
|
158
|
+
}
|
|
159
|
+
.dso-btn-group > *:last-child {
|
|
160
|
+
border-radius: 0 4px 4px 0;
|
|
161
|
+
}
|
|
162
|
+
.dso-btn-group > *:only-child {
|
|
163
|
+
border-radius: 4px;
|
|
164
|
+
}
|
|
165
|
+
.dso-btn-group > .dso-input-number {
|
|
166
|
+
background-color: #fff;
|
|
167
|
+
border-color: #ccc;
|
|
168
|
+
color: #191919;
|
|
169
|
+
border-style: solid;
|
|
170
|
+
border-width: 1px;
|
|
171
|
+
flex-wrap: nowrap;
|
|
172
|
+
padding: 0 16px;
|
|
173
|
+
}
|
|
174
|
+
@media screen and (max-width: 767px) {
|
|
175
|
+
.dso-btn-group > .dso-input-number {
|
|
176
|
+
justify-content: center;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
.dso-btn-group > *:hover + .dso-input-number,
|
|
180
|
+
.dso-btn-group > *:focus + .dso-input-number {
|
|
181
|
+
background-color: #fff;
|
|
182
|
+
border-color: #39870c;
|
|
183
|
+
color: #191919;
|
|
184
|
+
}
|
|
185
|
+
.dso-btn-group > *.dso-selected + .dso-input-number {
|
|
186
|
+
background-color: #fff;
|
|
187
|
+
border-color: #39870c;
|
|
188
|
+
color: #191919;
|
|
189
|
+
border-width: 1px;
|
|
190
|
+
outline: 1px solid #39870c;
|
|
191
|
+
}
|
|
192
|
+
.dso-btn-group > *:active + .dso-input-number, .dso-btn-group > *:active + .dso-input-number:hover,
|
|
193
|
+
.dso-btn-group > *.active + .dso-input-number,
|
|
194
|
+
.dso-btn-group > *.active + .dso-input-number:hover {
|
|
195
|
+
background-color: #fff;
|
|
196
|
+
border-color: #39870c;
|
|
197
|
+
color: #191919;
|
|
198
|
+
}
|
|
199
|
+
.dso-btn-group > *.disabled + .dso-input-number, .dso-btn-group > *.disabled + .dso-input-number:hover,
|
|
200
|
+
.dso-btn-group > *[disabled] + .dso-input-number,
|
|
201
|
+
.dso-btn-group > *[disabled] + .dso-input-number:hover {
|
|
202
|
+
background-color: #fff;
|
|
203
|
+
border-color: #ccc;
|
|
204
|
+
color: #666;
|
|
205
|
+
opacity: 1;
|
|
206
|
+
}
|
|
207
|
+
.dso-btn-group .dso-list-button {
|
|
208
|
+
padding-right: 15px;
|
|
209
|
+
}
|
|
210
|
+
@media screen and (max-width: 767px) {
|
|
211
|
+
.dso-btn-group {
|
|
212
|
+
flex-direction: column;
|
|
213
|
+
}
|
|
214
|
+
.dso-btn-group > *:first-child {
|
|
215
|
+
border-radius: 4px 4px 0 0;
|
|
216
|
+
}
|
|
217
|
+
.dso-btn-group > *:not(:first-child) {
|
|
218
|
+
border-left-style: solid !important;
|
|
219
|
+
border-top-style: none !important;
|
|
220
|
+
}
|
|
221
|
+
.dso-btn-group > *:last-child {
|
|
222
|
+
border-radius: 0 0 4px 4px;
|
|
223
|
+
}
|
|
224
|
+
.dso-btn-group > *:only-child {
|
|
225
|
+
border-radius: 4px;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.dso-selectable {
|
|
230
|
+
position: relative;
|
|
231
|
+
padding: 0 0 0 32px;
|
|
232
|
+
}
|
|
233
|
+
.dso-selectable .dso-selectable-options {
|
|
234
|
+
list-style: none;
|
|
235
|
+
margin-top: 8px;
|
|
236
|
+
padding-left: 0;
|
|
237
|
+
}
|
|
238
|
+
.dso-selectable .dso-selectable-options li + li {
|
|
239
|
+
margin-top: 8px;
|
|
240
|
+
}
|
|
241
|
+
.dso-selectable label {
|
|
242
|
+
font-weight: 400;
|
|
243
|
+
line-height: 24px;
|
|
244
|
+
margin: 0;
|
|
245
|
+
}
|
|
246
|
+
.dso-selectable input[type=checkbox][disabled] + label::before, .dso-selectable input[type=checkbox][disabled]:active + label::before, .dso-selectable input[type=checkbox][disabled]:focus + label::before,
|
|
247
|
+
.dso-selectable input[type=radio][disabled] + label::before,
|
|
248
|
+
.dso-selectable input[type=radio][disabled]:active + label::before,
|
|
249
|
+
.dso-selectable input[type=radio][disabled]:focus + label::before {
|
|
250
|
+
background-color: #fff;
|
|
251
|
+
box-shadow: 0 0 0 2px #e5e5e5;
|
|
252
|
+
}
|
|
253
|
+
.dso-selectable input[type=checkbox],
|
|
254
|
+
.dso-selectable input[type=radio] {
|
|
255
|
+
height: 24px;
|
|
256
|
+
left: 0;
|
|
257
|
+
margin: 0;
|
|
258
|
+
opacity: 0;
|
|
259
|
+
position: absolute;
|
|
260
|
+
top: 0;
|
|
261
|
+
width: 24px;
|
|
262
|
+
z-index: 100;
|
|
263
|
+
zoom: 1;
|
|
264
|
+
}
|
|
265
|
+
@media (prefers-contrast: more) {
|
|
266
|
+
.dso-selectable input[type=checkbox],
|
|
267
|
+
.dso-selectable input[type=radio] {
|
|
268
|
+
opacity: 1;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
.dso-selectable input[type=checkbox]:not([disabled]),
|
|
272
|
+
.dso-selectable input[type=radio]:not([disabled]) {
|
|
273
|
+
cursor: pointer;
|
|
274
|
+
}
|
|
275
|
+
.dso-selectable input[type=checkbox] + label,
|
|
276
|
+
.dso-selectable input[type=radio] + label {
|
|
277
|
+
display: inline;
|
|
278
|
+
font-style: normal;
|
|
279
|
+
padding-left: 0;
|
|
280
|
+
}
|
|
281
|
+
.dso-selectable input[type=checkbox] + label::before,
|
|
282
|
+
.dso-selectable input[type=radio] + label::before {
|
|
283
|
+
background: #fff;
|
|
284
|
+
border: 0;
|
|
285
|
+
box-shadow: 0 0 0 2px var(--dso-selectable-color, #275937);
|
|
286
|
+
content: "";
|
|
287
|
+
height: 20px;
|
|
288
|
+
left: 2px;
|
|
289
|
+
position: absolute;
|
|
290
|
+
top: 2px;
|
|
291
|
+
width: 20px;
|
|
292
|
+
}
|
|
293
|
+
.dso-selectable input[type=checkbox]:focus,
|
|
294
|
+
.dso-selectable input[type=radio]:focus {
|
|
295
|
+
outline: 0;
|
|
296
|
+
}
|
|
297
|
+
.dso-selectable input[type=checkbox]:focus + label::before,
|
|
298
|
+
.dso-selectable input[type=radio]:focus + label::before {
|
|
299
|
+
box-shadow: 0 0 0 3px var(--dso-selectable-color, #275937);
|
|
300
|
+
height: 18px;
|
|
301
|
+
left: 3px;
|
|
302
|
+
top: 3px;
|
|
303
|
+
width: 18px;
|
|
304
|
+
}
|
|
305
|
+
.dso-selectable input[type=checkbox]:active + label::before, .dso-selectable input[type=checkbox].active + label::before,
|
|
306
|
+
.dso-selectable input[type=radio]:active + label::before,
|
|
307
|
+
.dso-selectable input[type=radio].active + label::before {
|
|
308
|
+
background-color: #ebf3e6;
|
|
309
|
+
box-shadow: 0 0 0 1px #275937;
|
|
310
|
+
height: 22px;
|
|
311
|
+
left: 1px;
|
|
312
|
+
top: 1px;
|
|
313
|
+
width: 22px;
|
|
314
|
+
}
|
|
315
|
+
.dso-selectable input[type=checkbox] + label::before {
|
|
316
|
+
border-radius: 4px;
|
|
317
|
+
}
|
|
318
|
+
.dso-selectable input[type=checkbox] + label::after {
|
|
319
|
+
background: transparent;
|
|
320
|
+
content: "";
|
|
321
|
+
left: 6px;
|
|
322
|
+
opacity: 0;
|
|
323
|
+
position: absolute;
|
|
324
|
+
top: 6px;
|
|
325
|
+
zoom: 1;
|
|
326
|
+
}
|
|
327
|
+
.dso-selectable input[type=checkbox]:checked + label::after, .dso-selectable input[type=checkbox]:indeterminate + label::after {
|
|
328
|
+
opacity: 1;
|
|
329
|
+
}
|
|
330
|
+
.dso-selectable input[type=checkbox]:checked + label::after {
|
|
331
|
+
border: solid;
|
|
332
|
+
border-color: var(--dso-selectable-color, #39870c);
|
|
333
|
+
border-top-color: transparent;
|
|
334
|
+
border-width: 0 0 3px 3px;
|
|
335
|
+
height: 8px;
|
|
336
|
+
transform: rotate(-45deg);
|
|
337
|
+
width: 13px;
|
|
338
|
+
}
|
|
339
|
+
.dso-selectable input[type=checkbox]:indeterminate + label::after {
|
|
340
|
+
background-color: var(--dso-selectable-color, #39870c);
|
|
341
|
+
height: 12px;
|
|
342
|
+
width: 12px;
|
|
343
|
+
}
|
|
344
|
+
.dso-selectable input[type=radio] + label::before {
|
|
345
|
+
border-radius: 50%;
|
|
346
|
+
}
|
|
347
|
+
.dso-selectable input[type=radio] + label::after {
|
|
348
|
+
background-color: transparent;
|
|
349
|
+
border-radius: 50%;
|
|
350
|
+
content: "";
|
|
351
|
+
height: 12px;
|
|
352
|
+
left: 6px;
|
|
353
|
+
opacity: 0;
|
|
354
|
+
position: absolute;
|
|
355
|
+
top: 6px;
|
|
356
|
+
width: 12px;
|
|
357
|
+
zoom: 1;
|
|
358
|
+
}
|
|
359
|
+
.dso-selectable input[type=radio]:checked + label::after {
|
|
360
|
+
background-color: var(--dso-selectable-color, #39870c);
|
|
361
|
+
opacity: 1;
|
|
362
|
+
}
|
|
363
|
+
.dso-selectable > dso-info {
|
|
364
|
+
float: none;
|
|
365
|
+
margin: 8px 16px 0 -32px;
|
|
366
|
+
width: calc(100% + 32px);
|
|
367
|
+
}
|
|
368
|
+
.dso-selectable label {
|
|
369
|
+
font-weight: 700;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.dso-list-button {
|
|
373
|
+
display: inline-block;
|
|
374
|
+
font-size: 1em;
|
|
375
|
+
font-weight: 500;
|
|
376
|
+
margin-bottom: 0;
|
|
377
|
+
text-decoration: none;
|
|
378
|
+
touch-action: manipulation;
|
|
379
|
+
text-align: left;
|
|
380
|
+
user-select: none;
|
|
381
|
+
vertical-align: middle;
|
|
382
|
+
background-color: #fff;
|
|
383
|
+
border-color: #ccc;
|
|
384
|
+
color: #191919;
|
|
385
|
+
border-radius: 4px;
|
|
386
|
+
border-width: 1px;
|
|
387
|
+
border-style: solid;
|
|
388
|
+
font-weight: 600;
|
|
389
|
+
padding: 15px 47px 15px 15px;
|
|
390
|
+
position: relative;
|
|
391
|
+
text-align: left;
|
|
392
|
+
white-space: normal;
|
|
393
|
+
width: 100%;
|
|
394
|
+
}
|
|
395
|
+
.dso-list-button:focus, .dso-list-button:focus-visible {
|
|
396
|
+
outline-offset: 2px;
|
|
397
|
+
}
|
|
398
|
+
.dso-list-button:active {
|
|
399
|
+
outline: 0;
|
|
400
|
+
}
|
|
401
|
+
.dso-list-button:hover, .dso-list-button:focus {
|
|
402
|
+
background-color: #fff;
|
|
403
|
+
border-color: #39870c;
|
|
404
|
+
color: #191919;
|
|
405
|
+
}
|
|
406
|
+
.dso-list-button:active, .dso-list-button:active:hover, .dso-list-button.active, .dso-list-button.active:hover {
|
|
407
|
+
background-color: #fff;
|
|
408
|
+
border-color: #39870c;
|
|
409
|
+
color: #191919;
|
|
410
|
+
}
|
|
411
|
+
.dso-list-button.disabled, .dso-list-button.disabled:hover, .dso-list-button[disabled], .dso-list-button[disabled]:hover {
|
|
412
|
+
background-color: #fff;
|
|
413
|
+
border-color: #ccc;
|
|
414
|
+
color: #666;
|
|
415
|
+
opacity: 1;
|
|
416
|
+
}
|
|
417
|
+
.dso-list-button.dso-selected {
|
|
418
|
+
border-color: #39870c;
|
|
419
|
+
border-width: 1px;
|
|
420
|
+
outline: 1px solid #39870c;
|
|
421
|
+
}
|
|
422
|
+
.dso-list-button.dso-selected.dso-single-count {
|
|
423
|
+
position: relative;
|
|
424
|
+
}
|
|
425
|
+
.dso-list-button.dso-selected.dso-single-count::after {
|
|
426
|
+
background-color: #fff;
|
|
427
|
+
bottom: 0;
|
|
428
|
+
content: "";
|
|
429
|
+
display: inline-block;
|
|
430
|
+
position: absolute;
|
|
431
|
+
right: -2px;
|
|
432
|
+
top: 0;
|
|
433
|
+
width: 2px;
|
|
434
|
+
}
|
|
435
|
+
.dso-list-button > span {
|
|
436
|
+
display: block;
|
|
437
|
+
}
|
|
438
|
+
.dso-list-button .dso-sublabel {
|
|
439
|
+
font-weight: 400;
|
|
440
|
+
width: 100%;
|
|
441
|
+
}
|
|
442
|
+
.dso-list-button .dso-subcontent {
|
|
443
|
+
color: #666;
|
|
444
|
+
font-weight: 400;
|
|
445
|
+
padding: 16px 0 0 16px;
|
|
446
|
+
}
|
|
447
|
+
.dso-list-button .dso-subcontent mark {
|
|
448
|
+
background-color: transparent;
|
|
449
|
+
color: #666;
|
|
450
|
+
font-weight: 700;
|
|
451
|
+
padding: 0;
|
|
452
|
+
}
|
|
453
|
+
.dso-list-button dso-icon,
|
|
454
|
+
.dso-list-button svg.di,
|
|
455
|
+
.dso-list-button .dso-count {
|
|
456
|
+
height: 24px;
|
|
457
|
+
position: absolute;
|
|
458
|
+
right: 15px;
|
|
459
|
+
top: 15px;
|
|
460
|
+
width: 24px;
|
|
461
|
+
}
|
|
462
|
+
.dso-list-button dso-icon,
|
|
463
|
+
.dso-list-button svg.di {
|
|
464
|
+
color: #39870c;
|
|
465
|
+
page-break-before: always;
|
|
466
|
+
}
|
|
467
|
+
.dso-list-button .dso-count {
|
|
468
|
+
font-weight: 700;
|
|
469
|
+
}
|
|
470
|
+
@media screen and (max-width: 767px) {
|
|
471
|
+
.dso-list-button.dso-selected.dso-single-count::after {
|
|
472
|
+
width: 0;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
.dso-list-button .dso-sublabel {
|
|
476
|
+
padding-left: 32px;
|
|
477
|
+
}
|
|
478
|
+
.dso-list-button .dso-subcontent {
|
|
479
|
+
padding-left: 48px;
|
|
480
|
+
padding-top: 8px;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.dso-list-button + .dso-list-button,
|
|
484
|
+
.dso-list-button + .dso-btn-group,
|
|
485
|
+
.dso-btn-group + .dso-list-button,
|
|
486
|
+
.dso-btn-group + .dso-btn-group {
|
|
487
|
+
margin-top: 4px;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.dso-input-wrapper {
|
|
491
|
+
position: relative;
|
|
492
|
+
}
|
|
493
|
+
.dso-input-wrapper .form-control {
|
|
494
|
+
width: 9ch;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.form-control {
|
|
498
|
+
display: block;
|
|
499
|
+
width: 100%;
|
|
500
|
+
height: 40px;
|
|
501
|
+
padding: 6px 14px;
|
|
502
|
+
font-size: 1rem;
|
|
503
|
+
line-height: 1.5;
|
|
504
|
+
color: #191919;
|
|
505
|
+
background-color: #fff;
|
|
506
|
+
background-image: none;
|
|
507
|
+
border: 1px solid #275937;
|
|
508
|
+
border-radius: 4px;
|
|
509
|
+
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
|
510
|
+
}
|
|
511
|
+
.form-control::-moz-placeholder {
|
|
512
|
+
color: #666;
|
|
513
|
+
opacity: 1;
|
|
514
|
+
}
|
|
515
|
+
.form-control:-ms-input-placeholder {
|
|
516
|
+
color: #666;
|
|
517
|
+
}
|
|
518
|
+
.form-control::-webkit-input-placeholder {
|
|
519
|
+
color: #666;
|
|
520
|
+
}
|
|
521
|
+
.form-control::-ms-expand {
|
|
522
|
+
background-color: transparent;
|
|
523
|
+
border: 0;
|
|
524
|
+
}
|
|
525
|
+
.form-control:focus {
|
|
526
|
+
border-color: #275937;
|
|
527
|
+
outline: 0;
|
|
528
|
+
box-shadow: inset 0 0 0 1px #275937;
|
|
529
|
+
}
|
|
530
|
+
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
|
|
531
|
+
background-color: #fff;
|
|
532
|
+
opacity: 1;
|
|
533
|
+
}
|
|
534
|
+
.form-control[disabled], fieldset[disabled] .form-control {
|
|
535
|
+
cursor: default;
|
|
536
|
+
}
|
|
537
|
+
.form-control[disabled] {
|
|
538
|
+
border-color: #e5e5e5;
|
|
539
|
+
color: #999;
|
|
540
|
+
}
|
|
541
|
+
.form-control[readonly] {
|
|
542
|
+
border-width: 1px;
|
|
543
|
+
}
|
|
544
|
+
.form-control[type=text] {
|
|
545
|
+
line-height: 40px;
|
|
546
|
+
}
|
|
547
|
+
.form-control[size] {
|
|
548
|
+
width: auto;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.dso-manual-input-button[type=button] {
|
|
552
|
+
background-color: transparent;
|
|
553
|
+
border: 0;
|
|
554
|
+
bottom: 0;
|
|
555
|
+
left: 0;
|
|
556
|
+
position: absolute;
|
|
557
|
+
right: 0;
|
|
558
|
+
top: 0;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.hidden {
|
|
562
|
+
display: none !important;
|
|
563
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|