@kalel1500/kalion-js 0.7.0-beta.2
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/LICENSE +674 -0
- package/README.md +27 -0
- package/dist/app/kalion-js.es.js +5832 -0
- package/dist/app/kalion-js.es.js.map +1 -0
- package/dist/app/slimselect.css +62 -0
- package/dist/app/styles-old.css +2032 -0
- package/dist/app/styles.css +42 -0
- package/dist/app/sweetalert.css +1338 -0
- package/dist/app/tabulator.css +3861 -0
- package/dist/app/tailwind-config.css +61 -0
- package/dist/app/types/core/_types/index.d.ts +185 -0
- package/dist/app/types/core/application/LayoutListenersUseCase.d.ts +4 -0
- package/dist/app/types/core/application/index.d.ts +1 -0
- package/dist/app/types/core/domain/exceptions/CannotOpenModalException.d.ts +3 -0
- package/dist/app/types/core/domain/exceptions/CannotOpenModalWarning.d.ts +3 -0
- package/dist/app/types/core/domain/exceptions/InvalidValueException.d.ts +3 -0
- package/dist/app/types/core/domain/index.d.ts +8 -0
- package/dist/app/types/core/domain/objects/value-objects/EnumVo.d.ts +14 -0
- package/dist/app/types/core/domain/objects/value-objects/IntVo.d.ts +12 -0
- package/dist/app/types/core/domain/objects/value-objects/StringVo.d.ts +14 -0
- package/dist/app/types/core/domain/services/DomService.d.ts +7 -0
- package/dist/app/types/core/domain/services/Test.d.ts +4 -0
- package/dist/app/types/core/domain/services/ThemeSwitcher.d.ts +17 -0
- package/dist/app/types/core/infrastructure/index.d.ts +17 -0
- package/dist/app/types/core/infrastructure/utilities/components/Component.d.ts +4 -0
- package/dist/app/types/core/infrastructure/utilities/components/html/Btn.d.ts +6 -0
- package/dist/app/types/core/infrastructure/utilities/components/html/Icon.d.ts +5 -0
- package/dist/app/types/core/infrastructure/utilities/general/Constants.d.ts +10 -0
- package/dist/app/types/core/infrastructure/utilities/general/Cookie.d.ts +11 -0
- package/dist/app/types/core/infrastructure/utilities/general/Html.d.ts +4 -0
- package/dist/app/types/core/infrastructure/utilities/general/Instantiable.d.ts +5 -0
- package/dist/app/types/core/infrastructure/utilities/general/LDate.d.ts +30 -0
- package/dist/app/types/core/infrastructure/utilities/general/LStorage.d.ts +11 -0
- package/dist/app/types/core/infrastructure/utilities/general/Mutation.d.ts +11 -0
- package/dist/app/types/core/infrastructure/utilities/general/Notify.d.ts +19 -0
- package/dist/app/types/core/infrastructure/utilities/general/Ttable.d.ts +73 -0
- package/dist/app/types/core/infrastructure/utilities/general/global.d.ts +38 -0
- package/dist/app/types/core/infrastructure/utilities/modals/SModal.d.ts +111 -0
- package/dist/app/types/core/infrastructure/utilities/routing/Route.d.ts +8 -0
- package/dist/app/types/core/infrastructure/utilities/routing/Url.d.ts +11 -0
- package/dist/app/types/core/infrastructure/utilities/tests/TestConstants.d.ts +8 -0
- package/dist/app/types/core/infrastructure/utilities/translation/Translator.d.ts +13 -0
- package/dist/app/types/core/infrastructure/utilities/translation/TranslatorS.d.ts +0 -0
- package/dist/app/types/core/infrastructure/utilities/translation/lang/en.json.d.ts +48 -0
- package/dist/app/types/core/infrastructure/utilities/translation/lang/es.json.d.ts +48 -0
- package/dist/app/types/core/infrastructure/utilities/websockets/EchoService.d.ts +6 -0
- package/dist/app/types/core/infrastructure/utilities/websockets/Websocket.d.ts +23 -0
- package/dist/app/types/index.d.ts +5 -0
- package/dist/app/types/providers/UtilitiesServiceProvider.d.ts +12 -0
- package/dist/cli/index.js +64 -0
- package/dist/cli/stubs/.prettierrc +12 -0
- package/dist/cli/stubs/resources/css/app.css +12 -0
- package/dist/cli/stubs/resources/js/app/bootstrap.ts +21 -0
- package/dist/cli/stubs/resources/js/app/constants.ts +28 -0
- package/dist/cli/stubs/resources/js/app/lang/en.json +4 -0
- package/dist/cli/stubs/resources/js/app/lang/es.json +4 -0
- package/dist/cli/stubs/resources/js/app/routes.ts +6 -0
- package/dist/cli/stubs/resources/js/app/translations.ts +14 -0
- package/dist/cli/stubs/resources/js/app.ts +7 -0
- package/dist/cli/stubs/resources/js/src/shared/application/HomeUseCase.ts +8 -0
- package/dist/cli/stubs/resources/js/src/shared/infrastructure/DefaultController.ts +7 -0
- package/dist/cli/stubs/tsconfig.json +25 -0
- package/dist/cli/stubs/vite.config.ts +15 -0
- package/dist/plugins/tailwind/index.cjs +44 -0
- package/dist/plugins/tailwind/index.d.ts +5 -0
- package/dist/plugins/tailwind/tailwind.config.js +15 -0
- package/dist/plugins/vite/index.d.ts +2 -0
- package/dist/plugins/vite/index.js +75 -0
- package/package.json +86 -0
|
@@ -0,0 +1,2032 @@
|
|
|
1
|
+
.small-small {
|
|
2
|
+
font-size: 70%;
|
|
3
|
+
font-weight: 400;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.focus-clear:focus {
|
|
7
|
+
box-shadow: none !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.flex-direction-column {
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.white-space-normal {
|
|
15
|
+
white-space: normal !important;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.justify-self-center {
|
|
19
|
+
justify-self: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.justify-self-end {
|
|
23
|
+
justify-self: end;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.grid-columns-2 {
|
|
27
|
+
grid-template-columns: repeat(2, 1fr);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.grid-columns-3 {
|
|
31
|
+
grid-template-columns: repeat(3, 1fr);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.grid-columns-4 {
|
|
35
|
+
grid-template-columns: repeat(4, 1fr) !important;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.grid-columns-10f-1f {
|
|
39
|
+
grid-template-columns: 10fr 1fr;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.grid-columns-1f-1f {
|
|
43
|
+
grid-template-columns: 1fr 1fr;
|
|
44
|
+
grid-gap: 0.5em;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.grid-columns-02f-1f {
|
|
48
|
+
grid-template-columns: 0.2fr 1fr;
|
|
49
|
+
grid-gap: 0.5em;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.card-header--new {
|
|
53
|
+
display: flex;
|
|
54
|
+
justify-content: space-between;
|
|
55
|
+
align-items: center;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.card-header--new::after {
|
|
59
|
+
content: none;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.form-inline {
|
|
63
|
+
display: flex;
|
|
64
|
+
flex-flow: row wrap;
|
|
65
|
+
align-items: center
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.form-inline .form-check {
|
|
69
|
+
width: 100%
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@media (min-width: 576px) {
|
|
73
|
+
.form-inline label {
|
|
74
|
+
display: flex;
|
|
75
|
+
align-items: center;
|
|
76
|
+
justify-content: center;
|
|
77
|
+
margin-bottom: 0
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.form-inline .form-group {
|
|
81
|
+
display: flex;
|
|
82
|
+
flex: 0 0 auto;
|
|
83
|
+
flex-flow: row wrap;
|
|
84
|
+
align-items: center;
|
|
85
|
+
margin-bottom: 0
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.form-inline .form-control {
|
|
89
|
+
display: inline-block;
|
|
90
|
+
width: auto;
|
|
91
|
+
vertical-align: middle
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.form-inline .form-control-plaintext {
|
|
95
|
+
display: inline-block
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.form-inline .custom-select, .form-inline .input-group {
|
|
99
|
+
width: auto
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.form-inline .form-check {
|
|
103
|
+
display: flex;
|
|
104
|
+
align-items: center;
|
|
105
|
+
justify-content: center;
|
|
106
|
+
width: auto;
|
|
107
|
+
padding-left: 0
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.form-inline .form-check-input {
|
|
111
|
+
position: relative;
|
|
112
|
+
margin-top: 0;
|
|
113
|
+
margin-right: .25rem;
|
|
114
|
+
margin-left: 0
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.form-inline .custom-control {
|
|
118
|
+
align-items: center;
|
|
119
|
+
justify-content: center
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.form-inline .custom-control-label {
|
|
123
|
+
margin-bottom: 0
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.text-inherit {
|
|
128
|
+
color: inherit;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.badge-normal {
|
|
132
|
+
font-size: 1em;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.btn-xs, .btn-group-xs > .btn {
|
|
136
|
+
--bs-btn-padding-y: .1rem;
|
|
137
|
+
--bs-btn-padding-x: .3rem;
|
|
138
|
+
--bs-btn-font-size: .825rem;
|
|
139
|
+
--bs-btn-border-radius: var(--bs-border-radius-sm);
|
|
140
|
+
padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
|
|
141
|
+
font-size: var(--bs-btn-font-size);
|
|
142
|
+
border-radius: var(--bs-btn-border-radius);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
:root {
|
|
146
|
+
--bsc-sidebar-with: 250px;
|
|
147
|
+
--bsc-navbar-heith: 3.45rem;
|
|
148
|
+
--bsc-footer-heith: 3.6rem;
|
|
149
|
+
--bsc-sidebar-collapse-with: 4.5rem;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
------------------------------------------------------------------------------------------------------------------------
|
|
154
|
+
-----PLUGIN----------------------------------------------------------------------------------------------------------
|
|
155
|
+
*/
|
|
156
|
+
|
|
157
|
+
.navbar {
|
|
158
|
+
/*background-color: white !important; */
|
|
159
|
+
/*border-bottom: 1px solid #e5e5e5; */
|
|
160
|
+
/*padding: 0.3rem 0.5rem; */
|
|
161
|
+
/*height: var(--bsc-navbar-heith); */
|
|
162
|
+
--bs-navbar-padding-y: 0.29em;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.footer {
|
|
166
|
+
height: var(--bsc-footer-heith);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.dropdown-menu {
|
|
170
|
+
max-height: 82vh;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
------------------------------------------------------------------------------------------------------------------------
|
|
175
|
+
-----CUSTOM----------------------------------------------------------------------------------------------------------
|
|
176
|
+
*/
|
|
177
|
+
|
|
178
|
+
.dropdown-menu-right {
|
|
179
|
+
right: 0;
|
|
180
|
+
left: auto !important;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.main-content {
|
|
184
|
+
min-height: calc(100vh - var(--bsc-footer-heith) - var(--bsc-navbar-heith));
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
small, .small {
|
|
188
|
+
font-size: 80% !important;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.btn-info {
|
|
192
|
+
--bs-btn-color: white;
|
|
193
|
+
--bs-btn-hover-color: white;
|
|
194
|
+
--bs-btn-active-color: white;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.text-bg-info {
|
|
198
|
+
color: white !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/*.btn-danger {
|
|
202
|
+
color: #fff !important;
|
|
203
|
+
background-color: #c10000 !important;
|
|
204
|
+
border-color: #bd1121 !important;
|
|
205
|
+
}*/
|
|
206
|
+
|
|
207
|
+
.tooltip {
|
|
208
|
+
--bs-tooltip-max-width: 800px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.tooltip-inner {
|
|
212
|
+
text-align: left;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
:root{--ss-primary-color: #5897fb;--ss-bg-color: #ffffff;--ss-font-color: #4d4d4d;--ss-font-placeholder-color: #8d8d8d;--ss-disabled-color: #dcdee2;--ss-border-color: #dcdee2;--ss-highlight-color: #fffb8c;--ss-success-color: #00b755;--ss-error-color: #dc3545;--ss-focus-color: #5897fb;--ss-main-height: 30px;--ss-content-height: 300px;--ss-spacing-l: 7px;--ss-spacing-m: 5px;--ss-spacing-s: 3px;--ss-animation-timing: 0.2s;--ss-border-radius: 4px}
|
|
216
|
+
|
|
217
|
+
@keyframes ss-valueIn{0%{transform:scale(0);opacity:0}100%{transform:scale(1);opacity:1}}
|
|
218
|
+
|
|
219
|
+
@keyframes ss-valueOut{0%{transform:scale(1);opacity:1}100%{transform:scale(0);opacity:0}}
|
|
220
|
+
|
|
221
|
+
.ss-hide{display:none !important}
|
|
222
|
+
|
|
223
|
+
.ss-main{display:flex;flex-direction:row;position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;color:var(--ss-font-color);min-height:var(--ss-main-height);width:100%;padding:var(--ss-spacing-s);cursor:pointer;border:1px solid var(--ss-border-color);border-radius:var(--ss-border-radius);background-color:var(--ss-bg-color);outline:0;box-sizing:border-box;transition:background-color var(--ss-animation-timing);overflow:hidden}
|
|
224
|
+
|
|
225
|
+
.ss-main:focus{box-shadow:0 0 5px var(--ss-focus-color)}
|
|
226
|
+
|
|
227
|
+
.ss-main.ss-disabled{background-color:var(--ss-disabled-color);cursor:not-allowed}
|
|
228
|
+
|
|
229
|
+
.ss-main.ss-disabled .ss-values .ss-disabled{color:var(--ss-font-color)}
|
|
230
|
+
|
|
231
|
+
.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete{cursor:not-allowed}
|
|
232
|
+
|
|
233
|
+
.ss-main.ss-open-above{border-top-left-radius:0px;border-top-right-radius:0px}
|
|
234
|
+
|
|
235
|
+
.ss-main.ss-open-below{border-bottom-left-radius:0px;border-bottom-right-radius:0px}
|
|
236
|
+
|
|
237
|
+
.ss-main .ss-values{display:inline-flex;flex-wrap:wrap;gap:var(--ss-spacing-m);flex:1 1 100%}
|
|
238
|
+
|
|
239
|
+
.ss-main .ss-values .ss-placeholder{display:flex;padding:var(--ss-spacing-s) var(--ss-spacing-m) var(--ss-spacing-s) var(--ss-spacing-m);margin:auto 0px auto 0px;line-height:1em;align-items:center;width:100%;color:var(--ss-font-placeholder-color);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
|
240
|
+
|
|
241
|
+
.ss-main .ss-values .ss-max{display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;width:-moz-fit-content;width:fit-content;font-size:12px;color:var(--ss-bg-color);line-height:1;padding:var(--ss-spacing-s) var(--ss-spacing-m);background-color:var(--ss-primary-color);border-radius:var(--ss-border-radius)}
|
|
242
|
+
|
|
243
|
+
.ss-main .ss-values .ss-single{display:flex;margin:auto 0px auto var(--ss-spacing-s)}
|
|
244
|
+
|
|
245
|
+
.ss-main .ss-values .ss-value{display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;width:-moz-fit-content;width:fit-content;background-color:var(--ss-primary-color);border-radius:var(--ss-border-radius);animation-name:ss-valueIn;animation-duration:var(--ss-animation-timing);animation-timing-function:ease-out;animation-fill-mode:both}
|
|
246
|
+
|
|
247
|
+
.ss-main .ss-values .ss-value.ss-value-out{animation-name:ss-valueOut;animation-duration:var(--ss-animation-timing);animation-timing-function:ease-out}
|
|
248
|
+
|
|
249
|
+
.ss-main .ss-values .ss-value .ss-value-text{font-size:12px;color:var(--ss-bg-color);line-height:1;padding:var(--ss-spacing-s) var(--ss-spacing-m)}
|
|
250
|
+
|
|
251
|
+
.ss-main .ss-values .ss-value .ss-value-delete{display:flex;align-items:center;height:var(--ss-spacing-l);width:var(--ss-spacing-l);padding:var(--ss-spacing-s) var(--ss-spacing-m);cursor:pointer;border-left:solid 1px var(--ss-bg-color);box-sizing:content-box}
|
|
252
|
+
|
|
253
|
+
.ss-main .ss-values .ss-value .ss-value-delete svg{height:var(--ss-spacing-l);width:var(--ss-spacing-l)}
|
|
254
|
+
|
|
255
|
+
.ss-main .ss-values .ss-value .ss-value-delete svg path{fill:none;stroke:var(--ss-bg-color);stroke-width:18;stroke-linecap:round;stroke-linejoin:round}
|
|
256
|
+
|
|
257
|
+
.ss-main .ss-deselect{flex:0 1 auto;display:flex;align-items:center;justify-content:center;width:-moz-fit-content;width:fit-content;height:auto;padding:0 var(--ss-spacing-m) 0 var(--ss-spacing-m)}
|
|
258
|
+
|
|
259
|
+
.ss-main .ss-deselect svg{width:8px;height:8px}
|
|
260
|
+
|
|
261
|
+
.ss-main .ss-deselect svg path{fill:none;stroke:var(--ss-font-color);stroke-width:20;stroke-linecap:round;stroke-linejoin:round}
|
|
262
|
+
|
|
263
|
+
.ss-main .ss-arrow{flex:0 1 auto;display:flex;align-items:center;justify-content:flex-end;width:12px;height:12px;margin:auto var(--ss-spacing-m) auto var(--ss-spacing-m)}
|
|
264
|
+
|
|
265
|
+
.ss-main .ss-arrow path{fill:none;stroke:var(--ss-font-color);stroke-width:18;stroke-linecap:round;stroke-linejoin:round;transition-timing-function:ease-out;transition:var(--ss-animation-timing)}
|
|
266
|
+
|
|
267
|
+
.ss-content{position:absolute;display:flex;height:auto;flex-direction:column;width:auto;max-height:var(--ss-content-height);box-sizing:border-box;border:solid 1px var(--ss-border-color);background-color:var(--ss-bg-color);transition:transform var(--ss-animation-timing),opacity var(--ss-animation-timing);opacity:0;transform:scaleY(0);transform-origin:center top;overflow:hidden;z-index:10000}
|
|
268
|
+
|
|
269
|
+
.ss-content.ss-relative{position:relative;height:100%}
|
|
270
|
+
|
|
271
|
+
.ss-content.ss-fixed{position:fixed}
|
|
272
|
+
|
|
273
|
+
.ss-content.ss-open-above{flex-direction:column-reverse;opacity:1;transform:scaleY(1);transform-origin:center bottom;border-top-left-radius:var(--ss-border-radius);border-top-right-radius:var(--ss-border-radius)}
|
|
274
|
+
|
|
275
|
+
.ss-content.ss-open-below{opacity:1;transform:scaleY(1);transform-origin:center top;border-bottom-left-radius:var(--ss-border-radius);border-bottom-right-radius:var(--ss-border-radius)}
|
|
276
|
+
|
|
277
|
+
.ss-content .ss-search{flex:0 1 auto;display:flex;flex-direction:row;padding:var(--ss-spacing-l) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l)}
|
|
278
|
+
|
|
279
|
+
.ss-content .ss-search input{display:inline-flex;font-size:inherit;line-height:inherit;flex:1 1 auto;width:100%;min-width:0px;padding:var(--ss-spacing-m) var(--ss-spacing-l);margin:0;border:1px solid var(--ss-border-color);border-radius:var(--ss-border-radius);background-color:var(--ss-bg-color);outline:0;text-align:left;box-sizing:border-box}
|
|
280
|
+
|
|
281
|
+
.ss-content .ss-search input::-moz-placeholder{color:var(--ss-font-placeholder-color);vertical-align:middle}
|
|
282
|
+
|
|
283
|
+
.ss-content .ss-search input::placeholder{color:var(--ss-font-placeholder-color);vertical-align:middle}
|
|
284
|
+
|
|
285
|
+
.ss-content .ss-search input:focus{box-shadow:0 0 5px var(--ss-focus-color)}
|
|
286
|
+
|
|
287
|
+
.ss-content .ss-search .ss-addable{display:inline-flex;justify-content:center;align-items:center;cursor:pointer;flex:0 0 auto;height:auto;margin:0 0 0 var(--ss-spacing-m);border:1px solid var(--ss-border-color);border-radius:var(--ss-border-radius)}
|
|
288
|
+
|
|
289
|
+
.ss-content .ss-search .ss-addable svg{display:flex;align-items:center;justify-content:flex-end;flex:0 1 auto;width:12px;height:12px;margin:auto var(--ss-spacing-m) auto var(--ss-spacing-m)}
|
|
290
|
+
|
|
291
|
+
.ss-content .ss-search .ss-addable svg path{fill:none;stroke:var(--ss-font-color);stroke-width:18;stroke-linecap:round;stroke-linejoin:round}
|
|
292
|
+
|
|
293
|
+
.ss-content .ss-list{flex:1 1 auto;height:auto;overflow-x:hidden;overflow-y:auto}
|
|
294
|
+
|
|
295
|
+
.ss-content .ss-list .ss-error{color:var(--ss-error-color);padding:var(--ss-spacing-l)}
|
|
296
|
+
|
|
297
|
+
.ss-content .ss-list .ss-searching{color:var(--ss-font-color);padding:var(--ss-spacing-l)}
|
|
298
|
+
|
|
299
|
+
.ss-content .ss-list .ss-optgroup.ss-close .ss-option{display:none !important}
|
|
300
|
+
|
|
301
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding:var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l)}
|
|
302
|
+
|
|
303
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text{flex:1 1 auto;font-weight:bold;color:var(--ss-font-color)}
|
|
304
|
+
|
|
305
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow){cursor:pointer}
|
|
306
|
+
|
|
307
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions{flex:0 1 auto;display:flex;flex-direction:row;align-items:center;justify-content:center;gap:var(--ss-spacing-m)}
|
|
308
|
+
|
|
309
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall{flex:0 0 auto;display:flex;flex-direction:row;cursor:pointer}
|
|
310
|
+
|
|
311
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover{opacity:.5}
|
|
312
|
+
|
|
313
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path{stroke:var(--ss-error-color)}
|
|
314
|
+
|
|
315
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span{flex:0 1 auto;display:flex;align-items:center;justify-content:center;font-size:60%;text-align:center;padding:0 var(--ss-spacing-s) 0 0}
|
|
316
|
+
|
|
317
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg{flex:0 1 auto;width:13px;height:13px}
|
|
318
|
+
|
|
319
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path{fill:none;stroke:var(--ss-success-color);stroke-linecap:round;stroke-linejoin:round}
|
|
320
|
+
|
|
321
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child{stroke-width:5}
|
|
322
|
+
|
|
323
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child{stroke-width:11}
|
|
324
|
+
|
|
325
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable{flex:0 1 auto;display:flex;flex-direction:row;cursor:pointer}
|
|
326
|
+
|
|
327
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow{flex:1 1 auto;width:10px;height:10px}
|
|
328
|
+
|
|
329
|
+
.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path{fill:none;stroke:var(--ss-font-color);stroke-width:18;stroke-linecap:round;stroke-linejoin:round;transition-timing-function:ease-out;transition:var(--ss-animation-timing)}
|
|
330
|
+
|
|
331
|
+
.ss-content .ss-list .ss-optgroup .ss-option{padding:var(--ss-spacing-s) var(--ss-spacing-s) var(--ss-spacing-s) calc(var(--ss-spacing-l)*3)}
|
|
332
|
+
|
|
333
|
+
.ss-content .ss-list .ss-option{display:block;padding:var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);white-space:normal;color:var(--ss-font-color);cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}
|
|
334
|
+
|
|
335
|
+
.ss-content .ss-list .ss-option:hover{color:var(--ss-bg-color);background-color:var(--ss-primary-color)}
|
|
336
|
+
|
|
337
|
+
.ss-content .ss-list .ss-option.ss-highlighted,.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected{color:var(--ss-bg-color);background-color:var(--ss-primary-color)}
|
|
338
|
+
|
|
339
|
+
.ss-content .ss-list .ss-option.ss-disabled{cursor:not-allowed;background-color:var(--ss-disabled-color)}
|
|
340
|
+
|
|
341
|
+
.ss-content .ss-list .ss-option.ss-disabled:hover{color:var(--ss-font-color)}
|
|
342
|
+
|
|
343
|
+
.ss-content .ss-list .ss-option .ss-search-highlight{display:inline-block;background-color:var(--ss-highlight-color)}
|
|
344
|
+
|
|
345
|
+
/* Color de fondo del desplegable */
|
|
346
|
+
|
|
347
|
+
.ss-content.ss-open,
|
|
348
|
+
.ss-option.ss-disabled {
|
|
349
|
+
background-color: #f4f4f4 !important;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
/* Color de la opcion desabilitada (en el desplegable) */
|
|
353
|
+
|
|
354
|
+
.ss-option.ss-disabled {
|
|
355
|
+
color: #aab8c6 !important;
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
/* Color de fondo del select (sin desplegar) */
|
|
359
|
+
|
|
360
|
+
.slimSelectGray .ss-main .ss-single-selected {
|
|
361
|
+
background-color: #f2f2f2;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.slimSelectLikeInput .ss-main .ss-single-selected {
|
|
365
|
+
background-color: #ffffff;
|
|
366
|
+
height: calc(2.19rem + 2px);
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.ss-main .badge {
|
|
370
|
+
font-weight: 400;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.ss-main .ss-multi-selected .ss-values .ss-value {
|
|
374
|
+
/*color: #000000; */
|
|
375
|
+
/*background-color: #bef7fb; */
|
|
376
|
+
/*color: #000000; */
|
|
377
|
+
/*background-color: #cafcff; */
|
|
378
|
+
background-color: #58cbf2;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/* Color de fondo de las opciones seleccionadas */
|
|
382
|
+
|
|
383
|
+
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
|
|
384
|
+
/*background-color: #5e9cff29; */
|
|
385
|
+
/*background-color: #59cbf2; */
|
|
386
|
+
background-color: #00a5d1;
|
|
387
|
+
color: white;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.ss-option {
|
|
391
|
+
margin: 2px;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
div:where(.swal2-container) button:where(.swal2-close) {
|
|
395
|
+
color: #858585 !important;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
|
|
399
|
+
color: var(--ss-selected-font-color);
|
|
400
|
+
background-color: var(--ss-primary-color);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.ss-content .ss-list .ss-option:hover {
|
|
404
|
+
color: var(--ss-selected-font-color);
|
|
405
|
+
background-color: var(--ss-primary-color);
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
:root {
|
|
409
|
+
--ss-primary-color: #0089d9;
|
|
410
|
+
--ss-bg-color: #f9f9f9;
|
|
411
|
+
--ss-font-color: #4d4d4d;
|
|
412
|
+
--ss-font-placeholder-color: #8d8d8d;
|
|
413
|
+
--ss-disabled-color: #dcdee2;
|
|
414
|
+
--ss-border-color: #dcdee2;
|
|
415
|
+
--ss-highlight-color: #fffb8c;
|
|
416
|
+
--ss-success-color: #00b755;
|
|
417
|
+
--ss-error-color: #dc3545;
|
|
418
|
+
--ss-focus-color: #5897fb;
|
|
419
|
+
--ss-main-height: 30px;
|
|
420
|
+
--ss-content-height: 300px;
|
|
421
|
+
--ss-spacing-l: 5px;
|
|
422
|
+
--ss-spacing-m: 2px;
|
|
423
|
+
--ss-spacing-s: 2px;
|
|
424
|
+
--ss-animation-timing: 0.2s;
|
|
425
|
+
--ss-border-radius: 3px;
|
|
426
|
+
--ss-selected-font-color: var(--ss-bg-color);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.dark {
|
|
430
|
+
|
|
431
|
+
--ss-primary-color: #111827;
|
|
432
|
+
--ss-bg-color: #1f2732;
|
|
433
|
+
--ss-font-color: #ffffff;
|
|
434
|
+
--ss-font-placeholder-color: #a3a3a3;
|
|
435
|
+
--ss-selected-font-color: var(--ss-font-color);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
:root {
|
|
439
|
+
--swal2-container-padding: 0.625em;
|
|
440
|
+
--swal2-backdrop: rgba(0, 0, 0, 0.4);
|
|
441
|
+
--swal2-width: 32em;
|
|
442
|
+
--swal2-padding: 0 0 1.25em;
|
|
443
|
+
--swal2-border: none;
|
|
444
|
+
--swal2-border-radius: 0.3125rem;
|
|
445
|
+
--swal2-background: white;
|
|
446
|
+
--swal2-color: #545454;
|
|
447
|
+
--swal2-footer-border-color: #eee;
|
|
448
|
+
--swal2-show-animation: swal2-show 0.3s;
|
|
449
|
+
--swal2-hide-animation: swal2-hide 0.15s forwards;
|
|
450
|
+
--swal2-input-background: transparent;
|
|
451
|
+
--swal2-progress-step-background: #add8e6;
|
|
452
|
+
--swal2-validation-message-background: #f0f0f0;
|
|
453
|
+
--swal2-validation-message-color: #666;
|
|
454
|
+
--swal2-close-button-position: initial;
|
|
455
|
+
--swal2-close-button-inset: auto;
|
|
456
|
+
--swal2-close-button-font-size: 2.5em;
|
|
457
|
+
--swal2-close-button-color: #ccc;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
[data-swal2-theme=dark] {
|
|
461
|
+
--swal2-dark-theme-black: #19191a;
|
|
462
|
+
--swal2-dark-theme-white: #e1e1e1;
|
|
463
|
+
--swal2-background: var(--swal2-dark-theme-black);
|
|
464
|
+
--swal2-color: var(--swal2-dark-theme-white);
|
|
465
|
+
--swal2-footer-border-color: #555;
|
|
466
|
+
--swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
|
|
467
|
+
--swal2-validation-message-background: color-mix(
|
|
468
|
+
in srgb,
|
|
469
|
+
var(--swal2-dark-theme-black),
|
|
470
|
+
var(--swal2-dark-theme-white) 10%
|
|
471
|
+
);
|
|
472
|
+
--swal2-validation-message-color: var(--swal2-dark-theme-white);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
@media (prefers-color-scheme: dark) {
|
|
476
|
+
[data-swal2-theme=auto] {
|
|
477
|
+
--swal2-dark-theme-black: #19191a;
|
|
478
|
+
--swal2-dark-theme-white: #e1e1e1;
|
|
479
|
+
--swal2-background: var(--swal2-dark-theme-black);
|
|
480
|
+
--swal2-color: var(--swal2-dark-theme-white);
|
|
481
|
+
--swal2-footer-border-color: #555;
|
|
482
|
+
--swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
|
|
483
|
+
--swal2-validation-message-background: color-mix(
|
|
484
|
+
in srgb,
|
|
485
|
+
var(--swal2-dark-theme-black),
|
|
486
|
+
var(--swal2-dark-theme-white) 10%
|
|
487
|
+
);
|
|
488
|
+
--swal2-validation-message-color: var(--swal2-dark-theme-white);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) {
|
|
493
|
+
overflow: hidden;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
body.swal2-height-auto {
|
|
497
|
+
height: auto !important;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
body.swal2-no-backdrop .swal2-container {
|
|
501
|
+
background-color: transparent !important;
|
|
502
|
+
pointer-events: none;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
body.swal2-no-backdrop .swal2-container .swal2-popup {
|
|
506
|
+
pointer-events: all;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
body.swal2-no-backdrop .swal2-container .swal2-modal {
|
|
510
|
+
box-shadow: 0 0 10px var(--swal2-backdrop);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
body.swal2-toast-shown .swal2-container {
|
|
514
|
+
box-sizing: border-box;
|
|
515
|
+
width: 360px;
|
|
516
|
+
max-width: 100%;
|
|
517
|
+
background-color: transparent;
|
|
518
|
+
pointer-events: none;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
body.swal2-toast-shown .swal2-container.swal2-top {
|
|
522
|
+
inset: 0 auto auto 50%;
|
|
523
|
+
transform: translateX(-50%);
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
|
|
527
|
+
inset: 0 0 auto auto;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
|
|
531
|
+
inset: 0 auto auto 0;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
|
|
535
|
+
inset: 50% auto auto 0;
|
|
536
|
+
transform: translateY(-50%);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
body.swal2-toast-shown .swal2-container.swal2-center {
|
|
540
|
+
inset: 50% auto auto 50%;
|
|
541
|
+
transform: translate(-50%, -50%);
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
|
|
545
|
+
inset: 50% 0 auto auto;
|
|
546
|
+
transform: translateY(-50%);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
|
|
550
|
+
inset: auto auto 0 0;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
body.swal2-toast-shown .swal2-container.swal2-bottom {
|
|
554
|
+
inset: auto auto 0 50%;
|
|
555
|
+
transform: translateX(-50%);
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
|
|
559
|
+
inset: auto 0 0 auto;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
@media print {
|
|
563
|
+
body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) {
|
|
564
|
+
overflow-y: scroll !important;
|
|
565
|
+
}
|
|
566
|
+
body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) > [aria-hidden=true] {
|
|
567
|
+
display: none;
|
|
568
|
+
}
|
|
569
|
+
body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) .swal2-container {
|
|
570
|
+
position: static !important;
|
|
571
|
+
}
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
div:where(.swal2-container) {
|
|
575
|
+
display: grid;
|
|
576
|
+
position: fixed;
|
|
577
|
+
z-index: 1060;
|
|
578
|
+
inset: 0;
|
|
579
|
+
box-sizing: border-box;
|
|
580
|
+
grid-template-areas: "top-start top top-end" "center-start center center-end" "bottom-start bottom-center bottom-end";
|
|
581
|
+
grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
|
|
582
|
+
height: 100%;
|
|
583
|
+
padding: var(--swal2-container-padding);
|
|
584
|
+
overflow-x: hidden;
|
|
585
|
+
transition: background-color 0.1s;
|
|
586
|
+
-webkit-overflow-scrolling: touch;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
|
|
590
|
+
background: var(--swal2-backdrop);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
div:where(.swal2-container).swal2-backdrop-hide {
|
|
594
|
+
background: transparent !important;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
div:where(.swal2-container).swal2-top-start, div:where(.swal2-container).swal2-center-start, div:where(.swal2-container).swal2-bottom-start {
|
|
598
|
+
grid-template-columns: minmax(0, 1fr) auto auto;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
div:where(.swal2-container).swal2-top, div:where(.swal2-container).swal2-center, div:where(.swal2-container).swal2-bottom {
|
|
602
|
+
grid-template-columns: auto minmax(0, 1fr) auto;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
div:where(.swal2-container).swal2-top-end, div:where(.swal2-container).swal2-center-end, div:where(.swal2-container).swal2-bottom-end {
|
|
606
|
+
grid-template-columns: auto auto minmax(0, 1fr);
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
div:where(.swal2-container).swal2-top-start > .swal2-popup {
|
|
610
|
+
align-self: start;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
div:where(.swal2-container).swal2-top > .swal2-popup {
|
|
614
|
+
grid-column: 2;
|
|
615
|
+
place-self: start center;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
div:where(.swal2-container).swal2-top-end > .swal2-popup, div:where(.swal2-container).swal2-top-right > .swal2-popup {
|
|
619
|
+
grid-column: 3;
|
|
620
|
+
place-self: start end;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
div:where(.swal2-container).swal2-center-start > .swal2-popup, div:where(.swal2-container).swal2-center-left > .swal2-popup {
|
|
624
|
+
grid-row: 2;
|
|
625
|
+
align-self: center;
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
div:where(.swal2-container).swal2-center > .swal2-popup {
|
|
629
|
+
grid-column: 2;
|
|
630
|
+
grid-row: 2;
|
|
631
|
+
place-self: center center;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
div:where(.swal2-container).swal2-center-end > .swal2-popup, div:where(.swal2-container).swal2-center-right > .swal2-popup {
|
|
635
|
+
grid-column: 3;
|
|
636
|
+
grid-row: 2;
|
|
637
|
+
place-self: center end;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
div:where(.swal2-container).swal2-bottom-start > .swal2-popup, div:where(.swal2-container).swal2-bottom-left > .swal2-popup {
|
|
641
|
+
grid-column: 1;
|
|
642
|
+
grid-row: 3;
|
|
643
|
+
align-self: end;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
div:where(.swal2-container).swal2-bottom > .swal2-popup {
|
|
647
|
+
grid-column: 2;
|
|
648
|
+
grid-row: 3;
|
|
649
|
+
place-self: end center;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
div:where(.swal2-container).swal2-bottom-end > .swal2-popup, div:where(.swal2-container).swal2-bottom-right > .swal2-popup {
|
|
653
|
+
grid-column: 3;
|
|
654
|
+
grid-row: 3;
|
|
655
|
+
place-self: end end;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
div:where(.swal2-container).swal2-grow-row > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
|
|
659
|
+
grid-column: 1/4;
|
|
660
|
+
width: 100%;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
div:where(.swal2-container).swal2-grow-column > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
|
|
664
|
+
grid-row: 1/4;
|
|
665
|
+
align-self: stretch;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
div:where(.swal2-container).swal2-no-transition {
|
|
669
|
+
transition: none !important;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
div:where(.swal2-container) div:where(.swal2-popup) {
|
|
673
|
+
display: none;
|
|
674
|
+
position: relative;
|
|
675
|
+
box-sizing: border-box;
|
|
676
|
+
grid-template-columns: minmax(0, 100%);
|
|
677
|
+
width: var(--swal2-width);
|
|
678
|
+
max-width: 100%;
|
|
679
|
+
padding: var(--swal2-padding);
|
|
680
|
+
border: var(--swal2-border);
|
|
681
|
+
border-radius: var(--swal2-border-radius);
|
|
682
|
+
background: var(--swal2-background);
|
|
683
|
+
color: var(--swal2-color);
|
|
684
|
+
font-family: inherit;
|
|
685
|
+
font-size: 1rem;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
div:where(.swal2-container) div:where(.swal2-popup):focus {
|
|
689
|
+
outline: none;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
div:where(.swal2-container) div:where(.swal2-popup).swal2-loading {
|
|
693
|
+
overflow-y: hidden;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable {
|
|
697
|
+
cursor: grab;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable div:where(.swal2-icon) {
|
|
701
|
+
cursor: grab;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging {
|
|
705
|
+
cursor: grabbing;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging div:where(.swal2-icon) {
|
|
709
|
+
cursor: grabbing;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
div:where(.swal2-container) h2:where(.swal2-title) {
|
|
713
|
+
position: relative;
|
|
714
|
+
max-width: 100%;
|
|
715
|
+
margin: 0;
|
|
716
|
+
padding: 0.8em 1em 0;
|
|
717
|
+
color: inherit;
|
|
718
|
+
font-size: 1.875em;
|
|
719
|
+
font-weight: 600;
|
|
720
|
+
text-align: center;
|
|
721
|
+
text-transform: none;
|
|
722
|
+
word-wrap: break-word;
|
|
723
|
+
cursor: initial;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
div:where(.swal2-container) div:where(.swal2-actions) {
|
|
727
|
+
display: flex;
|
|
728
|
+
z-index: 1;
|
|
729
|
+
box-sizing: border-box;
|
|
730
|
+
flex-wrap: wrap;
|
|
731
|
+
align-items: center;
|
|
732
|
+
justify-content: center;
|
|
733
|
+
width: auto;
|
|
734
|
+
margin: 1.25em auto 0;
|
|
735
|
+
padding: 0;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled[disabled] {
|
|
739
|
+
opacity: 0.4;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:hover {
|
|
743
|
+
background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
div:where(.swal2-container) div:where(.swal2-actions):not(.swal2-loading) .swal2-styled:active {
|
|
747
|
+
background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
div:where(.swal2-container) div:where(.swal2-loader) {
|
|
751
|
+
display: none;
|
|
752
|
+
align-items: center;
|
|
753
|
+
justify-content: center;
|
|
754
|
+
width: 2.2em;
|
|
755
|
+
height: 2.2em;
|
|
756
|
+
margin: 0 1.875em;
|
|
757
|
+
animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
|
|
758
|
+
border-width: 0.25em;
|
|
759
|
+
border-style: solid;
|
|
760
|
+
border-radius: 100%;
|
|
761
|
+
border-color: #2778c4 transparent #2778c4 transparent;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
div:where(.swal2-container) button:where(.swal2-styled) {
|
|
765
|
+
margin: 0.3125em;
|
|
766
|
+
padding: 0.625em 1.1em;
|
|
767
|
+
transition: box-shadow 0.1s;
|
|
768
|
+
box-shadow: 0 0 0 3px transparent;
|
|
769
|
+
font-weight: 500;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
|
|
773
|
+
cursor: pointer;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
|
|
777
|
+
border: 0;
|
|
778
|
+
border-radius: 0.25em;
|
|
779
|
+
background: initial;
|
|
780
|
+
background-color: #7066e0;
|
|
781
|
+
color: #fff;
|
|
782
|
+
font-size: 1em;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):focus-visible {
|
|
786
|
+
box-shadow: 0 0 0 3px rgba(112, 102, 224, 0.5);
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny) {
|
|
790
|
+
border: 0;
|
|
791
|
+
border-radius: 0.25em;
|
|
792
|
+
background: initial;
|
|
793
|
+
background-color: #dc3741;
|
|
794
|
+
color: #fff;
|
|
795
|
+
font-size: 1em;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):focus-visible {
|
|
799
|
+
box-shadow: 0 0 0 3px rgba(220, 55, 65, 0.5);
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
|
|
803
|
+
border: 0;
|
|
804
|
+
border-radius: 0.25em;
|
|
805
|
+
background: initial;
|
|
806
|
+
background-color: #6e7881;
|
|
807
|
+
color: #fff;
|
|
808
|
+
font-size: 1em;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):focus-visible {
|
|
812
|
+
box-shadow: 0 0 0 3px rgba(110, 120, 129, 0.5);
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus-visible {
|
|
816
|
+
box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
div:where(.swal2-container) button:where(.swal2-styled):focus-visible {
|
|
820
|
+
outline: none;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner {
|
|
824
|
+
border: 0;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
div:where(.swal2-container) div:where(.swal2-footer) {
|
|
828
|
+
margin: 1em 0 0;
|
|
829
|
+
padding: 1em 1em 0;
|
|
830
|
+
border-top: 1px solid var(--swal2-footer-border-color);
|
|
831
|
+
color: inherit;
|
|
832
|
+
font-size: 1em;
|
|
833
|
+
text-align: center;
|
|
834
|
+
cursor: initial;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
div:where(.swal2-container) .swal2-timer-progress-bar-container {
|
|
838
|
+
position: absolute;
|
|
839
|
+
right: 0;
|
|
840
|
+
bottom: 0;
|
|
841
|
+
left: 0;
|
|
842
|
+
grid-column: auto !important;
|
|
843
|
+
overflow: hidden;
|
|
844
|
+
border-bottom-right-radius: var(--swal2-border-radius);
|
|
845
|
+
border-bottom-left-radius: var(--swal2-border-radius);
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
div:where(.swal2-container) div:where(.swal2-timer-progress-bar) {
|
|
849
|
+
width: 100%;
|
|
850
|
+
height: 0.25em;
|
|
851
|
+
background: rgba(0, 0, 0, 0.2);
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
div:where(.swal2-container) img:where(.swal2-image) {
|
|
855
|
+
max-width: 100%;
|
|
856
|
+
margin: 2em auto 1em;
|
|
857
|
+
cursor: initial;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
div:where(.swal2-container) button:where(.swal2-close) {
|
|
861
|
+
position: var(--swal2-close-button-position);
|
|
862
|
+
inset: var(--swal2-close-button-inset);
|
|
863
|
+
z-index: 2;
|
|
864
|
+
align-items: center;
|
|
865
|
+
justify-content: center;
|
|
866
|
+
width: 1.2em;
|
|
867
|
+
height: 1.2em;
|
|
868
|
+
margin-top: 0;
|
|
869
|
+
margin-right: 0;
|
|
870
|
+
margin-bottom: -1.2em;
|
|
871
|
+
padding: 0;
|
|
872
|
+
overflow: hidden;
|
|
873
|
+
transition: color 0.1s, box-shadow 0.1s;
|
|
874
|
+
border: none;
|
|
875
|
+
border-radius: var(--swal2-border-radius);
|
|
876
|
+
background: transparent;
|
|
877
|
+
color: var(--swal2-close-button-color);
|
|
878
|
+
font-family: monospace;
|
|
879
|
+
font-size: var(--swal2-close-button-font-size);
|
|
880
|
+
cursor: pointer;
|
|
881
|
+
justify-self: end;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
div:where(.swal2-container) button:where(.swal2-close):hover {
|
|
885
|
+
transform: none;
|
|
886
|
+
background: transparent;
|
|
887
|
+
color: #f27474;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
div:where(.swal2-container) button:where(.swal2-close):focus-visible {
|
|
891
|
+
outline: none;
|
|
892
|
+
box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner {
|
|
896
|
+
border: 0;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
div:where(.swal2-container) div:where(.swal2-html-container) {
|
|
900
|
+
z-index: 1;
|
|
901
|
+
justify-content: center;
|
|
902
|
+
margin: 0;
|
|
903
|
+
padding: 1em 1.6em 0.3em;
|
|
904
|
+
overflow: auto;
|
|
905
|
+
color: inherit;
|
|
906
|
+
font-size: 1.125em;
|
|
907
|
+
font-weight: normal;
|
|
908
|
+
line-height: normal;
|
|
909
|
+
text-align: center;
|
|
910
|
+
word-wrap: break-word;
|
|
911
|
+
word-break: break-word;
|
|
912
|
+
cursor: initial;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
div:where(.swal2-container) input:where(.swal2-input),
|
|
916
|
+
div:where(.swal2-container) input:where(.swal2-file),
|
|
917
|
+
div:where(.swal2-container) textarea:where(.swal2-textarea),
|
|
918
|
+
div:where(.swal2-container) select:where(.swal2-select),
|
|
919
|
+
div:where(.swal2-container) div:where(.swal2-radio),
|
|
920
|
+
div:where(.swal2-container) label:where(.swal2-checkbox) {
|
|
921
|
+
margin: 1em 2em 3px;
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
div:where(.swal2-container) input:where(.swal2-input),
|
|
925
|
+
div:where(.swal2-container) input:where(.swal2-file),
|
|
926
|
+
div:where(.swal2-container) textarea:where(.swal2-textarea) {
|
|
927
|
+
box-sizing: border-box;
|
|
928
|
+
width: auto;
|
|
929
|
+
transition: border-color 0.1s, box-shadow 0.1s;
|
|
930
|
+
border: 1px solid #d9d9d9;
|
|
931
|
+
border-radius: 0.1875em;
|
|
932
|
+
background: var(--swal2-input-background);
|
|
933
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
|
|
934
|
+
color: inherit;
|
|
935
|
+
font-size: 1.125em;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror,
|
|
939
|
+
div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror,
|
|
940
|
+
div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror {
|
|
941
|
+
border-color: #f27474 !important;
|
|
942
|
+
box-shadow: 0 0 2px #f27474 !important;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
div:where(.swal2-container) input:where(.swal2-input):focus,
|
|
946
|
+
div:where(.swal2-container) input:where(.swal2-file):focus,
|
|
947
|
+
div:where(.swal2-container) textarea:where(.swal2-textarea):focus {
|
|
948
|
+
border: 1px solid #b4dbed;
|
|
949
|
+
outline: none;
|
|
950
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
div:where(.swal2-container) input:where(.swal2-input)::-moz-placeholder, div:where(.swal2-container) input:where(.swal2-file)::-moz-placeholder, div:where(.swal2-container) textarea:where(.swal2-textarea)::-moz-placeholder {
|
|
954
|
+
color: #ccc;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
div:where(.swal2-container) input:where(.swal2-input)::placeholder,
|
|
958
|
+
div:where(.swal2-container) input:where(.swal2-file)::placeholder,
|
|
959
|
+
div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder {
|
|
960
|
+
color: #ccc;
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
div:where(.swal2-container) .swal2-range {
|
|
964
|
+
margin: 1em 2em 3px;
|
|
965
|
+
background: var(--swal2-background);
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
div:where(.swal2-container) .swal2-range input {
|
|
969
|
+
width: 80%;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
div:where(.swal2-container) .swal2-range output {
|
|
973
|
+
width: 20%;
|
|
974
|
+
color: inherit;
|
|
975
|
+
font-weight: 600;
|
|
976
|
+
text-align: center;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
div:where(.swal2-container) .swal2-range input,
|
|
980
|
+
div:where(.swal2-container) .swal2-range output {
|
|
981
|
+
height: 2.625em;
|
|
982
|
+
padding: 0;
|
|
983
|
+
font-size: 1.125em;
|
|
984
|
+
line-height: 2.625em;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
div:where(.swal2-container) .swal2-input {
|
|
988
|
+
height: 2.625em;
|
|
989
|
+
padding: 0 0.75em;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
div:where(.swal2-container) .swal2-file {
|
|
993
|
+
width: 75%;
|
|
994
|
+
margin-right: auto;
|
|
995
|
+
margin-left: auto;
|
|
996
|
+
background: var(--swal2-input-background);
|
|
997
|
+
font-size: 1.125em;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
div:where(.swal2-container) .swal2-textarea {
|
|
1001
|
+
height: 6.75em;
|
|
1002
|
+
padding: 0.75em;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
div:where(.swal2-container) .swal2-select {
|
|
1006
|
+
min-width: 50%;
|
|
1007
|
+
max-width: 100%;
|
|
1008
|
+
padding: 0.375em 0.625em;
|
|
1009
|
+
background: var(--swal2-input-background);
|
|
1010
|
+
color: inherit;
|
|
1011
|
+
font-size: 1.125em;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
div:where(.swal2-container) .swal2-radio,
|
|
1015
|
+
div:where(.swal2-container) .swal2-checkbox {
|
|
1016
|
+
align-items: center;
|
|
1017
|
+
justify-content: center;
|
|
1018
|
+
background: var(--swal2-background);
|
|
1019
|
+
color: inherit;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
div:where(.swal2-container) .swal2-radio label,
|
|
1023
|
+
div:where(.swal2-container) .swal2-checkbox label {
|
|
1024
|
+
margin: 0 0.6em;
|
|
1025
|
+
font-size: 1.125em;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
div:where(.swal2-container) .swal2-radio input,
|
|
1029
|
+
div:where(.swal2-container) .swal2-checkbox input {
|
|
1030
|
+
flex-shrink: 0;
|
|
1031
|
+
margin: 0 0.4em;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
div:where(.swal2-container) label:where(.swal2-input-label) {
|
|
1035
|
+
display: flex;
|
|
1036
|
+
justify-content: center;
|
|
1037
|
+
margin: 1em auto 0;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
div:where(.swal2-container) div:where(.swal2-validation-message) {
|
|
1041
|
+
align-items: center;
|
|
1042
|
+
justify-content: center;
|
|
1043
|
+
margin: 1em 0 0;
|
|
1044
|
+
padding: 0.625em;
|
|
1045
|
+
overflow: hidden;
|
|
1046
|
+
background: var(--swal2-validation-message-background);
|
|
1047
|
+
color: var(--swal2-validation-message-color);
|
|
1048
|
+
font-size: 1em;
|
|
1049
|
+
font-weight: 300;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
div:where(.swal2-container) div:where(.swal2-validation-message)::before {
|
|
1053
|
+
content: "!";
|
|
1054
|
+
display: inline-block;
|
|
1055
|
+
width: 1.5em;
|
|
1056
|
+
min-width: 1.5em;
|
|
1057
|
+
height: 1.5em;
|
|
1058
|
+
margin: 0 0.625em;
|
|
1059
|
+
border-radius: 50%;
|
|
1060
|
+
background-color: #f27474;
|
|
1061
|
+
color: #fff;
|
|
1062
|
+
font-weight: 600;
|
|
1063
|
+
line-height: 1.5em;
|
|
1064
|
+
text-align: center;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
div:where(.swal2-container) .swal2-progress-steps {
|
|
1068
|
+
flex-wrap: wrap;
|
|
1069
|
+
align-items: center;
|
|
1070
|
+
max-width: 100%;
|
|
1071
|
+
margin: 1.25em auto;
|
|
1072
|
+
padding: 0;
|
|
1073
|
+
background: transparent;
|
|
1074
|
+
font-weight: 600;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
div:where(.swal2-container) .swal2-progress-steps li {
|
|
1078
|
+
display: inline-block;
|
|
1079
|
+
position: relative;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step {
|
|
1083
|
+
z-index: 20;
|
|
1084
|
+
flex-shrink: 0;
|
|
1085
|
+
width: 2em;
|
|
1086
|
+
height: 2em;
|
|
1087
|
+
border-radius: 2em;
|
|
1088
|
+
background: #2778c4;
|
|
1089
|
+
color: #fff;
|
|
1090
|
+
line-height: 2em;
|
|
1091
|
+
text-align: center;
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1094
|
+
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
|
|
1095
|
+
background: #2778c4;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
|
|
1099
|
+
background: var(--swal2-progress-step-background);
|
|
1100
|
+
color: #fff;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
|
|
1104
|
+
background: var(--swal2-progress-step-background);
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line {
|
|
1108
|
+
z-index: 10;
|
|
1109
|
+
flex-shrink: 0;
|
|
1110
|
+
width: 2.5em;
|
|
1111
|
+
height: 0.4em;
|
|
1112
|
+
margin: 0 -1px;
|
|
1113
|
+
background: #2778c4;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
div:where(.swal2-icon) {
|
|
1117
|
+
position: relative;
|
|
1118
|
+
box-sizing: content-box;
|
|
1119
|
+
justify-content: center;
|
|
1120
|
+
width: 5em;
|
|
1121
|
+
height: 5em;
|
|
1122
|
+
margin: 2.5em auto 0.6em;
|
|
1123
|
+
border: 0.25em solid transparent;
|
|
1124
|
+
border-radius: 50%;
|
|
1125
|
+
border-color: #000;
|
|
1126
|
+
font-family: inherit;
|
|
1127
|
+
line-height: 5em;
|
|
1128
|
+
cursor: default;
|
|
1129
|
+
-webkit-user-select: none;
|
|
1130
|
+
-moz-user-select: none;
|
|
1131
|
+
user-select: none;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
div:where(.swal2-icon) .swal2-icon-content {
|
|
1135
|
+
display: flex;
|
|
1136
|
+
align-items: center;
|
|
1137
|
+
font-size: 3.75em;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
div:where(.swal2-icon).swal2-error {
|
|
1141
|
+
border-color: #f27474;
|
|
1142
|
+
color: #f27474;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
div:where(.swal2-icon).swal2-error .swal2-x-mark {
|
|
1146
|
+
position: relative;
|
|
1147
|
+
flex-grow: 1;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line] {
|
|
1151
|
+
display: block;
|
|
1152
|
+
position: absolute;
|
|
1153
|
+
top: 2.3125em;
|
|
1154
|
+
width: 2.9375em;
|
|
1155
|
+
height: 0.3125em;
|
|
1156
|
+
border-radius: 0.125em;
|
|
1157
|
+
background-color: #f27474;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=left] {
|
|
1161
|
+
left: 1.0625em;
|
|
1162
|
+
transform: rotate(45deg);
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
div:where(.swal2-icon).swal2-error [class^=swal2-x-mark-line][class$=right] {
|
|
1166
|
+
right: 1em;
|
|
1167
|
+
transform: rotate(-45deg);
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
div:where(.swal2-icon).swal2-error.swal2-icon-show {
|
|
1171
|
+
animation: swal2-animate-error-icon 0.5s;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark {
|
|
1175
|
+
animation: swal2-animate-error-x-mark 0.5s;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
div:where(.swal2-icon).swal2-warning {
|
|
1179
|
+
border-color: #f8bb86;
|
|
1180
|
+
color: #f8bb86;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
div:where(.swal2-icon).swal2-warning.swal2-icon-show {
|
|
1184
|
+
animation: swal2-animate-error-icon 0.5s;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content {
|
|
1188
|
+
animation: swal2-animate-i-mark 0.5s;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
div:where(.swal2-icon).swal2-info {
|
|
1192
|
+
border-color: #3fc3ee;
|
|
1193
|
+
color: #3fc3ee;
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
div:where(.swal2-icon).swal2-info.swal2-icon-show {
|
|
1197
|
+
animation: swal2-animate-error-icon 0.5s;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content {
|
|
1201
|
+
animation: swal2-animate-i-mark 0.8s;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
div:where(.swal2-icon).swal2-question {
|
|
1205
|
+
border-color: #87adbd;
|
|
1206
|
+
color: #87adbd;
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
div:where(.swal2-icon).swal2-question.swal2-icon-show {
|
|
1210
|
+
animation: swal2-animate-error-icon 0.5s;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content {
|
|
1214
|
+
animation: swal2-animate-question-mark 0.8s;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
div:where(.swal2-icon).swal2-success {
|
|
1218
|
+
border-color: #a5dc86;
|
|
1219
|
+
color: #a5dc86;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line] {
|
|
1223
|
+
position: absolute;
|
|
1224
|
+
width: 3.75em;
|
|
1225
|
+
height: 7.5em;
|
|
1226
|
+
border-radius: 50%;
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=left] {
|
|
1230
|
+
top: -0.4375em;
|
|
1231
|
+
left: -2.0635em;
|
|
1232
|
+
transform: rotate(-45deg);
|
|
1233
|
+
transform-origin: 3.75em 3.75em;
|
|
1234
|
+
border-radius: 7.5em 0 0 7.5em;
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1237
|
+
div:where(.swal2-icon).swal2-success [class^=swal2-success-circular-line][class$=right] {
|
|
1238
|
+
top: -0.6875em;
|
|
1239
|
+
left: 1.875em;
|
|
1240
|
+
transform: rotate(-45deg);
|
|
1241
|
+
transform-origin: 0 3.75em;
|
|
1242
|
+
border-radius: 0 7.5em 7.5em 0;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
div:where(.swal2-icon).swal2-success .swal2-success-ring {
|
|
1246
|
+
position: absolute;
|
|
1247
|
+
z-index: 2;
|
|
1248
|
+
top: -0.25em;
|
|
1249
|
+
left: -0.25em;
|
|
1250
|
+
box-sizing: content-box;
|
|
1251
|
+
width: 100%;
|
|
1252
|
+
height: 100%;
|
|
1253
|
+
border: 0.25em solid rgba(165, 220, 134, 0.3);
|
|
1254
|
+
border-radius: 50%;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
div:where(.swal2-icon).swal2-success .swal2-success-fix {
|
|
1258
|
+
position: absolute;
|
|
1259
|
+
z-index: 1;
|
|
1260
|
+
top: 0.5em;
|
|
1261
|
+
left: 1.625em;
|
|
1262
|
+
width: 0.4375em;
|
|
1263
|
+
height: 5.625em;
|
|
1264
|
+
transform: rotate(-45deg);
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
div:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
|
|
1268
|
+
display: block;
|
|
1269
|
+
position: absolute;
|
|
1270
|
+
z-index: 2;
|
|
1271
|
+
height: 0.3125em;
|
|
1272
|
+
border-radius: 0.125em;
|
|
1273
|
+
background-color: #a5dc86;
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=tip] {
|
|
1277
|
+
top: 2.875em;
|
|
1278
|
+
left: 0.8125em;
|
|
1279
|
+
width: 1.5625em;
|
|
1280
|
+
transform: rotate(45deg);
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
div:where(.swal2-icon).swal2-success [class^=swal2-success-line][class$=long] {
|
|
1284
|
+
top: 2.375em;
|
|
1285
|
+
right: 0.5em;
|
|
1286
|
+
width: 2.9375em;
|
|
1287
|
+
transform: rotate(-45deg);
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip {
|
|
1291
|
+
animation: swal2-animate-success-line-tip 0.75s;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long {
|
|
1295
|
+
animation: swal2-animate-success-line-long 0.75s;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right {
|
|
1299
|
+
animation: swal2-rotate-success-circular-line 4.25s ease-in;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
[class^=swal2] {
|
|
1303
|
+
-webkit-tap-highlight-color: transparent;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.swal2-show {
|
|
1307
|
+
animation: var(--swal2-show-animation);
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
.swal2-hide {
|
|
1311
|
+
animation: var(--swal2-hide-animation);
|
|
1312
|
+
}
|
|
1313
|
+
|
|
1314
|
+
.swal2-noanimation {
|
|
1315
|
+
transition: none;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
.swal2-scrollbar-measure {
|
|
1319
|
+
position: absolute;
|
|
1320
|
+
top: -9999px;
|
|
1321
|
+
width: 50px;
|
|
1322
|
+
height: 50px;
|
|
1323
|
+
overflow: scroll;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.swal2-rtl .swal2-close {
|
|
1327
|
+
margin-right: initial;
|
|
1328
|
+
margin-left: 0;
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.swal2-rtl .swal2-timer-progress-bar {
|
|
1332
|
+
right: 0;
|
|
1333
|
+
left: auto;
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.swal2-toast {
|
|
1337
|
+
box-sizing: border-box;
|
|
1338
|
+
grid-column: 1/4 !important;
|
|
1339
|
+
grid-row: 1/4 !important;
|
|
1340
|
+
grid-template-columns: min-content auto min-content;
|
|
1341
|
+
padding: 1em;
|
|
1342
|
+
overflow-y: hidden;
|
|
1343
|
+
background: var(--swal2-background);
|
|
1344
|
+
box-shadow: 0 0 1px hsla(0, 0%, 0%, 0.075), 0 1px 2px hsla(0, 0%, 0%, 0.075), 1px 2px 4px hsla(0, 0%, 0%, 0.075), 1px 3px 8px hsla(0, 0%, 0%, 0.075), 2px 4px 16px hsla(0, 0%, 0%, 0.075);
|
|
1345
|
+
pointer-events: all;
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
.swal2-toast > * {
|
|
1349
|
+
grid-column: 2;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
.swal2-toast h2:where(.swal2-title) {
|
|
1353
|
+
margin: 0.5em 1em;
|
|
1354
|
+
padding: 0;
|
|
1355
|
+
font-size: 1em;
|
|
1356
|
+
text-align: initial;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
.swal2-toast .swal2-loading {
|
|
1360
|
+
justify-content: center;
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1363
|
+
.swal2-toast input:where(.swal2-input) {
|
|
1364
|
+
height: 2em;
|
|
1365
|
+
margin: 0.5em;
|
|
1366
|
+
font-size: 1em;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
.swal2-toast .swal2-validation-message {
|
|
1370
|
+
font-size: 1em;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
.swal2-toast div:where(.swal2-footer) {
|
|
1374
|
+
margin: 0.5em 0 0;
|
|
1375
|
+
padding: 0.5em 0 0;
|
|
1376
|
+
font-size: 0.8em;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.swal2-toast button:where(.swal2-close) {
|
|
1380
|
+
grid-column: 3/3;
|
|
1381
|
+
grid-row: 1/99;
|
|
1382
|
+
align-self: center;
|
|
1383
|
+
width: 0.8em;
|
|
1384
|
+
height: 0.8em;
|
|
1385
|
+
margin: 0;
|
|
1386
|
+
font-size: 2em;
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
.swal2-toast div:where(.swal2-html-container) {
|
|
1390
|
+
margin: 0.5em 1em;
|
|
1391
|
+
padding: 0;
|
|
1392
|
+
overflow: initial;
|
|
1393
|
+
font-size: 1em;
|
|
1394
|
+
text-align: initial;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.swal2-toast div:where(.swal2-html-container):empty {
|
|
1398
|
+
padding: 0;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.swal2-toast .swal2-loader {
|
|
1402
|
+
grid-column: 1;
|
|
1403
|
+
grid-row: 1/99;
|
|
1404
|
+
align-self: center;
|
|
1405
|
+
width: 2em;
|
|
1406
|
+
height: 2em;
|
|
1407
|
+
margin: 0.25em;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
.swal2-toast .swal2-icon {
|
|
1411
|
+
grid-column: 1;
|
|
1412
|
+
grid-row: 1/99;
|
|
1413
|
+
align-self: center;
|
|
1414
|
+
width: 2em;
|
|
1415
|
+
min-width: 2em;
|
|
1416
|
+
height: 2em;
|
|
1417
|
+
margin: 0 0.5em 0 0;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
.swal2-toast .swal2-icon .swal2-icon-content {
|
|
1421
|
+
display: flex;
|
|
1422
|
+
align-items: center;
|
|
1423
|
+
font-size: 1.8em;
|
|
1424
|
+
font-weight: bold;
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1427
|
+
.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
|
|
1428
|
+
width: 2em;
|
|
1429
|
+
height: 2em;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
|
|
1433
|
+
top: 0.875em;
|
|
1434
|
+
width: 1.375em;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
|
|
1438
|
+
left: 0.3125em;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
|
|
1442
|
+
right: 0.3125em;
|
|
1443
|
+
}
|
|
1444
|
+
|
|
1445
|
+
.swal2-toast div:where(.swal2-actions) {
|
|
1446
|
+
justify-content: flex-start;
|
|
1447
|
+
height: auto;
|
|
1448
|
+
margin: 0;
|
|
1449
|
+
margin-top: 0.5em;
|
|
1450
|
+
padding: 0 0.5em;
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
.swal2-toast button:where(.swal2-styled) {
|
|
1454
|
+
margin: 0.25em 0.5em;
|
|
1455
|
+
padding: 0.4em 0.6em;
|
|
1456
|
+
font-size: 1em;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
.swal2-toast .swal2-success {
|
|
1460
|
+
border-color: #a5dc86;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
|
|
1464
|
+
position: absolute;
|
|
1465
|
+
width: 1.6em;
|
|
1466
|
+
height: 3em;
|
|
1467
|
+
border-radius: 50%;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
|
|
1471
|
+
top: -0.8em;
|
|
1472
|
+
left: -0.5em;
|
|
1473
|
+
transform: rotate(-45deg);
|
|
1474
|
+
transform-origin: 2em 2em;
|
|
1475
|
+
border-radius: 4em 0 0 4em;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
|
|
1479
|
+
top: -0.25em;
|
|
1480
|
+
left: 0.9375em;
|
|
1481
|
+
transform-origin: 0 1.5em;
|
|
1482
|
+
border-radius: 0 4em 4em 0;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.swal2-toast .swal2-success .swal2-success-ring {
|
|
1486
|
+
width: 2em;
|
|
1487
|
+
height: 2em;
|
|
1488
|
+
}
|
|
1489
|
+
|
|
1490
|
+
.swal2-toast .swal2-success .swal2-success-fix {
|
|
1491
|
+
top: 0;
|
|
1492
|
+
left: 0.4375em;
|
|
1493
|
+
width: 0.4375em;
|
|
1494
|
+
height: 2.6875em;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.swal2-toast .swal2-success [class^=swal2-success-line] {
|
|
1498
|
+
height: 0.3125em;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
|
|
1502
|
+
top: 1.125em;
|
|
1503
|
+
left: 0.1875em;
|
|
1504
|
+
width: 0.75em;
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
|
|
1508
|
+
top: 0.9375em;
|
|
1509
|
+
right: 0.1875em;
|
|
1510
|
+
width: 1.375em;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
|
|
1514
|
+
animation: swal2-toast-animate-success-line-tip 0.75s;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
|
|
1518
|
+
animation: swal2-toast-animate-success-line-long 0.75s;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.swal2-toast.swal2-show {
|
|
1522
|
+
animation: swal2-toast-show 0.5s;
|
|
1523
|
+
}
|
|
1524
|
+
|
|
1525
|
+
.swal2-toast.swal2-hide {
|
|
1526
|
+
animation: swal2-toast-hide 0.1s forwards;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
@keyframes swal2-show {
|
|
1530
|
+
0% {
|
|
1531
|
+
transform: scale(0.7);
|
|
1532
|
+
}
|
|
1533
|
+
45% {
|
|
1534
|
+
transform: scale(1.05);
|
|
1535
|
+
}
|
|
1536
|
+
80% {
|
|
1537
|
+
transform: scale(0.95);
|
|
1538
|
+
}
|
|
1539
|
+
100% {
|
|
1540
|
+
transform: scale(1);
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
@keyframes swal2-hide {
|
|
1545
|
+
0% {
|
|
1546
|
+
transform: scale(1);
|
|
1547
|
+
opacity: 1;
|
|
1548
|
+
}
|
|
1549
|
+
100% {
|
|
1550
|
+
transform: scale(0.5);
|
|
1551
|
+
opacity: 0;
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
@keyframes swal2-animate-success-line-tip {
|
|
1556
|
+
0% {
|
|
1557
|
+
top: 1.1875em;
|
|
1558
|
+
left: 0.0625em;
|
|
1559
|
+
width: 0;
|
|
1560
|
+
}
|
|
1561
|
+
54% {
|
|
1562
|
+
top: 1.0625em;
|
|
1563
|
+
left: 0.125em;
|
|
1564
|
+
width: 0;
|
|
1565
|
+
}
|
|
1566
|
+
70% {
|
|
1567
|
+
top: 2.1875em;
|
|
1568
|
+
left: -0.375em;
|
|
1569
|
+
width: 3.125em;
|
|
1570
|
+
}
|
|
1571
|
+
84% {
|
|
1572
|
+
top: 3em;
|
|
1573
|
+
left: 1.3125em;
|
|
1574
|
+
width: 1.0625em;
|
|
1575
|
+
}
|
|
1576
|
+
100% {
|
|
1577
|
+
top: 2.8125em;
|
|
1578
|
+
left: 0.8125em;
|
|
1579
|
+
width: 1.5625em;
|
|
1580
|
+
}
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1583
|
+
@keyframes swal2-animate-success-line-long {
|
|
1584
|
+
0% {
|
|
1585
|
+
top: 3.375em;
|
|
1586
|
+
right: 2.875em;
|
|
1587
|
+
width: 0;
|
|
1588
|
+
}
|
|
1589
|
+
65% {
|
|
1590
|
+
top: 3.375em;
|
|
1591
|
+
right: 2.875em;
|
|
1592
|
+
width: 0;
|
|
1593
|
+
}
|
|
1594
|
+
84% {
|
|
1595
|
+
top: 2.1875em;
|
|
1596
|
+
right: 0;
|
|
1597
|
+
width: 3.4375em;
|
|
1598
|
+
}
|
|
1599
|
+
100% {
|
|
1600
|
+
top: 2.375em;
|
|
1601
|
+
right: 0.5em;
|
|
1602
|
+
width: 2.9375em;
|
|
1603
|
+
}
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
@keyframes swal2-rotate-success-circular-line {
|
|
1607
|
+
0% {
|
|
1608
|
+
transform: rotate(-45deg);
|
|
1609
|
+
}
|
|
1610
|
+
5% {
|
|
1611
|
+
transform: rotate(-45deg);
|
|
1612
|
+
}
|
|
1613
|
+
12% {
|
|
1614
|
+
transform: rotate(-405deg);
|
|
1615
|
+
}
|
|
1616
|
+
100% {
|
|
1617
|
+
transform: rotate(-405deg);
|
|
1618
|
+
}
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
@keyframes swal2-animate-error-x-mark {
|
|
1622
|
+
0% {
|
|
1623
|
+
margin-top: 1.625em;
|
|
1624
|
+
transform: scale(0.4);
|
|
1625
|
+
opacity: 0;
|
|
1626
|
+
}
|
|
1627
|
+
50% {
|
|
1628
|
+
margin-top: 1.625em;
|
|
1629
|
+
transform: scale(0.4);
|
|
1630
|
+
opacity: 0;
|
|
1631
|
+
}
|
|
1632
|
+
80% {
|
|
1633
|
+
margin-top: -0.375em;
|
|
1634
|
+
transform: scale(1.15);
|
|
1635
|
+
}
|
|
1636
|
+
100% {
|
|
1637
|
+
margin-top: 0;
|
|
1638
|
+
transform: scale(1);
|
|
1639
|
+
opacity: 1;
|
|
1640
|
+
}
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
@keyframes swal2-animate-error-icon {
|
|
1644
|
+
0% {
|
|
1645
|
+
transform: rotateX(100deg);
|
|
1646
|
+
opacity: 0;
|
|
1647
|
+
}
|
|
1648
|
+
100% {
|
|
1649
|
+
transform: rotateX(0deg);
|
|
1650
|
+
opacity: 1;
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
@keyframes swal2-rotate-loading {
|
|
1655
|
+
0% {
|
|
1656
|
+
transform: rotate(0deg);
|
|
1657
|
+
}
|
|
1658
|
+
100% {
|
|
1659
|
+
transform: rotate(360deg);
|
|
1660
|
+
}
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
@keyframes swal2-animate-question-mark {
|
|
1664
|
+
0% {
|
|
1665
|
+
transform: rotateY(-360deg);
|
|
1666
|
+
}
|
|
1667
|
+
100% {
|
|
1668
|
+
transform: rotateY(0);
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
@keyframes swal2-animate-i-mark {
|
|
1673
|
+
0% {
|
|
1674
|
+
transform: rotateZ(45deg);
|
|
1675
|
+
opacity: 0;
|
|
1676
|
+
}
|
|
1677
|
+
25% {
|
|
1678
|
+
transform: rotateZ(-25deg);
|
|
1679
|
+
opacity: 0.4;
|
|
1680
|
+
}
|
|
1681
|
+
50% {
|
|
1682
|
+
transform: rotateZ(15deg);
|
|
1683
|
+
opacity: 0.8;
|
|
1684
|
+
}
|
|
1685
|
+
75% {
|
|
1686
|
+
transform: rotateZ(-5deg);
|
|
1687
|
+
opacity: 1;
|
|
1688
|
+
}
|
|
1689
|
+
100% {
|
|
1690
|
+
transform: rotateX(0);
|
|
1691
|
+
opacity: 1;
|
|
1692
|
+
}
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
@keyframes swal2-toast-show {
|
|
1696
|
+
0% {
|
|
1697
|
+
transform: translateY(-0.625em) rotateZ(2deg);
|
|
1698
|
+
}
|
|
1699
|
+
33% {
|
|
1700
|
+
transform: translateY(0) rotateZ(-2deg);
|
|
1701
|
+
}
|
|
1702
|
+
66% {
|
|
1703
|
+
transform: translateY(0.3125em) rotateZ(2deg);
|
|
1704
|
+
}
|
|
1705
|
+
100% {
|
|
1706
|
+
transform: translateY(0) rotateZ(0deg);
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
|
|
1710
|
+
@keyframes swal2-toast-hide {
|
|
1711
|
+
100% {
|
|
1712
|
+
transform: rotateZ(1deg);
|
|
1713
|
+
opacity: 0;
|
|
1714
|
+
}
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
@keyframes swal2-toast-animate-success-line-tip {
|
|
1718
|
+
0% {
|
|
1719
|
+
top: 0.5625em;
|
|
1720
|
+
left: 0.0625em;
|
|
1721
|
+
width: 0;
|
|
1722
|
+
}
|
|
1723
|
+
54% {
|
|
1724
|
+
top: 0.125em;
|
|
1725
|
+
left: 0.125em;
|
|
1726
|
+
width: 0;
|
|
1727
|
+
}
|
|
1728
|
+
70% {
|
|
1729
|
+
top: 0.625em;
|
|
1730
|
+
left: -0.25em;
|
|
1731
|
+
width: 1.625em;
|
|
1732
|
+
}
|
|
1733
|
+
84% {
|
|
1734
|
+
top: 1.0625em;
|
|
1735
|
+
left: 0.75em;
|
|
1736
|
+
width: 0.5em;
|
|
1737
|
+
}
|
|
1738
|
+
100% {
|
|
1739
|
+
top: 1.125em;
|
|
1740
|
+
left: 0.1875em;
|
|
1741
|
+
width: 0.75em;
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1745
|
+
@keyframes swal2-toast-animate-success-line-long {
|
|
1746
|
+
0% {
|
|
1747
|
+
top: 1.625em;
|
|
1748
|
+
right: 1.375em;
|
|
1749
|
+
width: 0;
|
|
1750
|
+
}
|
|
1751
|
+
65% {
|
|
1752
|
+
top: 1.25em;
|
|
1753
|
+
right: 0.9375em;
|
|
1754
|
+
width: 0;
|
|
1755
|
+
}
|
|
1756
|
+
84% {
|
|
1757
|
+
top: 0.9375em;
|
|
1758
|
+
right: 0;
|
|
1759
|
+
width: 1.125em;
|
|
1760
|
+
}
|
|
1761
|
+
100% {
|
|
1762
|
+
top: 0.9375em;
|
|
1763
|
+
right: 0.1875em;
|
|
1764
|
+
width: 1.375em;
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
div:where(.swal2-container) button:where(.swal2-close):focus {
|
|
1769
|
+
box-shadow: none !important;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.dark div:where(.swal2-container) div:where(.swal2-popup) {
|
|
1773
|
+
background: #111827;
|
|
1774
|
+
color: #fff;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1777
|
+
.tabulator .tabulator-cell.cell-editable {
|
|
1778
|
+
background-color: #e0f7f3; /* #a7ffb957; */
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.tabulator .cell-position-changed {
|
|
1782
|
+
background-color: #8ac1f2;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
.tabulator .last-row-moved {
|
|
1786
|
+
background-color: #f2c18a;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.tabulator .last-row-moved:hover {
|
|
1790
|
+
background-color: #f3b16e;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.dark .tabulator .tabulator-cell.cell-editable {
|
|
1794
|
+
background-color: #014a3d;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.dark .tabulator .cell-position-changed {
|
|
1798
|
+
background-color: #4a92d3;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
.dark .tabulator .last-row-moved {
|
|
1802
|
+
background-color: #b9782f;
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
.dark .tabulator .last-row-moved:hover {
|
|
1806
|
+
background-color: #a9671d;
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
/*----- tabulator -----*/
|
|
1810
|
+
|
|
1811
|
+
.tabulator {
|
|
1812
|
+
font-size: 0.8rem;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
/*----- borders y header-----*/
|
|
1816
|
+
|
|
1817
|
+
/* [table-bordered]: ancho bordes tabla (si no no se ven los bordes horizontales) */
|
|
1818
|
+
|
|
1819
|
+
.tabulator.table-bordered > :not(caption) > * > * {
|
|
1820
|
+
border-width: 1px var(--bs-border-width);
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
/* [table-bordered]: cambiar el color de los bordes verticales */
|
|
1824
|
+
|
|
1825
|
+
.tabulator.table-bordered .tabulator-header .tabulator-col,
|
|
1826
|
+
.tabulator.table-bordered .tabulator-tableholder .tabulator-table .tabulator-row .tabulator-cell {
|
|
1827
|
+
border-right-color: #ddd;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
/* [table-bordered]: quitar header bordet top para que no haya 2 */
|
|
1831
|
+
|
|
1832
|
+
.tabulator.table-bordered .tabulator-header {
|
|
1833
|
+
border-top: none !important;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
/* [NOT table-bordered]: añadir bordes verticales manualmente */
|
|
1837
|
+
|
|
1838
|
+
/*.tabulator:not(.table-bordered) .tabulator-col-resize-handle {
|
|
1839
|
+
border-right: 1px solid #ddd;
|
|
1840
|
+
}*/
|
|
1841
|
+
|
|
1842
|
+
/* [NOT table-bordered]: añadir bordes verticales manualmente */
|
|
1843
|
+
|
|
1844
|
+
.tabulator:not(.table-bordered) .tabulator-header .tabulator-col,
|
|
1845
|
+
.tabulator:not(.table-bordered) .tabulator-tableholder .tabulator-table .tabulator-row .tabulator-cell {
|
|
1846
|
+
border-right: 1px solid #ddd;
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
.tabulator-row .tabulator-cell.tabulator-editing {
|
|
1850
|
+
border: 1px solid #1D68CD !important;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.tabulator .tabulator-header { /* Linea separadora header */
|
|
1854
|
+
border-bottom: 2px solid #01684a !important; /* #23C596 old*/
|
|
1855
|
+
font-weight: 500 !important;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.dark .tabulator-row .tabulator-cell.tabulator-editing {
|
|
1859
|
+
border: 1px solid #004199;
|
|
1860
|
+
outline: none;
|
|
1861
|
+
padding: 0;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
.dark .tabulator .tabulator-footer {
|
|
1865
|
+
padding: 5px 10px;
|
|
1866
|
+
padding-top: 8px;
|
|
1867
|
+
border-top: 3px solid #01684a; /* #23C596 old*/
|
|
1868
|
+
background-color: #111827;
|
|
1869
|
+
}
|
|
1870
|
+
|
|
1871
|
+
.dark .tabulator {
|
|
1872
|
+
background-color: #111827;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.dark .tabulator .tabulator-header {
|
|
1876
|
+
background-color: #111827;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
.dark .tabulator-row {
|
|
1880
|
+
background-color: #111827;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
.dark .tabulator-row.tabulator-row-even {
|
|
1884
|
+
background-color: #111827;
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
.dark .tabulator-row.tabulator-selectable:hover {
|
|
1888
|
+
background-color: #071022;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
.dark .tabulator .tabulator-header .tabulator-col {
|
|
1892
|
+
background-color: #111827;
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
.dark .tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
|
|
1896
|
+
cursor: pointer;
|
|
1897
|
+
background-color: #071022;
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
.dark .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input:focus {
|
|
1901
|
+
color: #fff;
|
|
1902
|
+
background-color: #2f2f2f;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
/*----- header-----*/
|
|
1906
|
+
|
|
1907
|
+
.tabulator .tabulator-col-title {
|
|
1908
|
+
text-align: center;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-filter input {
|
|
1912
|
+
font-size: 0.6rem; /* Tamaño fuente filtros */
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
/*----- footer -----*/
|
|
1916
|
+
|
|
1917
|
+
.tabulator .tabulator-footer {
|
|
1918
|
+
font-weight: 500 !important;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
.tabulator .tabulator-footer .tabulator-page.active {
|
|
1922
|
+
color: white;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
/*----- rows -----*/
|
|
1926
|
+
|
|
1927
|
+
.tabulator .tabulator-row {
|
|
1928
|
+
min-height: 0;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.tabulator .tabulator-row.tabulator-selectable:hover {
|
|
1932
|
+
/*background-color: #b9b9b9 !important; */ /* Con el themes tabulator_bootstrap5 ya no hace falta */
|
|
1933
|
+
cursor: initial;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
.tabulator .tabulator-row.tabulator-selected:hover {
|
|
1937
|
+
background-color: #769bcc !important;
|
|
1938
|
+
cursor: pointer;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
/* Con el themes tabulator_bootstrap5 ya no hace falta */
|
|
1942
|
+
|
|
1943
|
+
/*.tabulator .tabulator-row.tabulator-row-even {
|
|
1944
|
+
background-color: inherit;
|
|
1945
|
+
}*/
|
|
1946
|
+
|
|
1947
|
+
/*----- cells -----*/
|
|
1948
|
+
|
|
1949
|
+
.tabulator .tabulator-row .tabulator-cell {
|
|
1950
|
+
padding: 0.4rem !important; /* roiginalmente son 12px -> 6,4px */
|
|
1951
|
+
}
|
|
1952
|
+
|
|
1953
|
+
/*----- editors -----*/
|
|
1954
|
+
|
|
1955
|
+
/* TODO Canals - falta comprobar */
|
|
1956
|
+
|
|
1957
|
+
.tabulator-edit-select-list {
|
|
1958
|
+
font-size: 0.8rem;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
.tabulator-edit-select-list, .tabulator-edit-select-list-item {
|
|
1962
|
+
font-size: 12px;
|
|
1963
|
+
color: #999;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.tabulator-edit-list {
|
|
1967
|
+
font-size: 0.75rem;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
/*----- data tree -----*/
|
|
1971
|
+
|
|
1972
|
+
.tabulator-row .tabulator-cell .tabulator-data-tree-branch {
|
|
1973
|
+
border-left-color: rgb(100, 100, 100);
|
|
1974
|
+
border-bottom-color: rgb(100, 100, 100);
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
/*.tabulator-headers .headercolor-verde {
|
|
1978
|
+
background-color: #E2EFDA !important;
|
|
1979
|
+
}
|
|
1980
|
+
.tabulator-headers .headercolor-rojo {
|
|
1981
|
+
background-color: #FCE4D6 !important;
|
|
1982
|
+
}
|
|
1983
|
+
.tabulator-headers .headercolor-amarillo {
|
|
1984
|
+
background-color: #FFF2CC !important;
|
|
1985
|
+
}
|
|
1986
|
+
.tabulator-headers .headercolor-azul {
|
|
1987
|
+
background-color: #DDEBF7 !important;
|
|
1988
|
+
}
|
|
1989
|
+
.tabulator-headers .headercolor-lila {
|
|
1990
|
+
background-color: #F0DDF7 !important;
|
|
1991
|
+
}
|
|
1992
|
+
.tabulator-headers .headercolor-verde-dark {
|
|
1993
|
+
background-color: #C6E0B4 !important;
|
|
1994
|
+
}
|
|
1995
|
+
.tabulator-headers .headercolor-rojo-dark {
|
|
1996
|
+
background-color: #F8CBAD !important;
|
|
1997
|
+
}
|
|
1998
|
+
.tabulator-headers .headercolor-amarillo-dark {
|
|
1999
|
+
background-color: #FFE699 !important;
|
|
2000
|
+
}
|
|
2001
|
+
.tabulator-headers .headercolor-azul-dark {
|
|
2002
|
+
background-color: #B4C6E7 !important;
|
|
2003
|
+
}
|
|
2004
|
+
.tabulator-headers .headercolor-lila-dark {
|
|
2005
|
+
background-color: #D9B4E7 !important;
|
|
2006
|
+
}
|
|
2007
|
+
.scoreCol {
|
|
2008
|
+
background-color: #32363e !important;
|
|
2009
|
+
color: white;
|
|
2010
|
+
border: 1px solid #32363e;
|
|
2011
|
+
font-size: .2rem;
|
|
2012
|
+
font-weight: 300;
|
|
2013
|
+
}
|
|
2014
|
+
.tabulator-col-group-cols .scoreCol {
|
|
2015
|
+
margin-left: -3px;
|
|
2016
|
+
font-weight: 600;
|
|
2017
|
+
}
|
|
2018
|
+
.tabulator-headers .titleCol {
|
|
2019
|
+
background-color: #F9F9F9 !important;
|
|
2020
|
+
}
|
|
2021
|
+
.titlescore>.tabulator-col-content>.tabulator-col-title {
|
|
2022
|
+
font-weight: 600;
|
|
2023
|
+
font-size: 1.2rem;
|
|
2024
|
+
padding: 0px 10px !important;
|
|
2025
|
+
}*/
|
|
2026
|
+
|
|
2027
|
+
/* TODO Canals - revisar */
|
|
2028
|
+
|
|
2029
|
+
.tabulator input[type=number] {
|
|
2030
|
+
-moz-appearance: textfield;
|
|
2031
|
+
}
|
|
2032
|
+
/*# sourceMappingURL=app-old.css.map */
|