@arsedizioni/ars-utils 18.4.17 → 18.4.19
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/esm2022/clipper.common/common/definitions.mjs +8 -8
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document/document.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/references/references.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-facets/search-facets.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +3 -3
- package/esm2022/help/components/help-viewer/help-viewer.component.mjs +3 -3
- package/esm2022/support.ui/ui/notifications-browser/notification/notification.component.mjs +3 -3
- package/esm2022/support.ui/ui/notifications-browser/notifications-browser.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/busy/busy-dialog.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/confirm/confirm-dialog.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/credentials/credentials-dialog.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/info/info-dialog.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/recover-password/recover-password-dialog.component.mjs +3 -3
- package/esm2022/ui/ui/dialogs/reset-password/reset-password-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/components/filter-bar/filter-bar.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/prompt/prompt-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/prompt-date/prompt-date-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/prompt-time/prompt-time-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/select/select-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/select-file/select-file-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/select-picture/select-picture-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/select-tree/select-tree-dialog.component.mjs +3 -3
- package/esm2022/ui.application/ui/dialogs/send-to/send-to-dialog.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +7 -7
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-help.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-help.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs +4 -4
- package/fesm2022/arsedizioni-ars-utils-support.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +18 -18
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.mjs +12 -12
- package/fesm2022/arsedizioni-ars-utils-ui.mjs.map +1 -1
- package/package.json +7 -7
- package/styles/ui.scss +56 -51
package/styles/ui.scss
CHANGED
|
@@ -160,6 +160,10 @@ b {
|
|
|
160
160
|
color: var(--ars-color-error, #ff5449) !important;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
+
.success {
|
|
164
|
+
color: var(--ars-color-ok, #388E3C) !important;
|
|
165
|
+
}
|
|
166
|
+
|
|
163
167
|
.warning {
|
|
164
168
|
color: var(--ars-color-warning, #FFC107) !important;
|
|
165
169
|
}
|
|
@@ -180,78 +184,79 @@ b {
|
|
|
180
184
|
|
|
181
185
|
.drawer,
|
|
182
186
|
.drawer-small {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
187
|
+
.title-container {
|
|
188
|
+
padding: 20px 5px 20px 0px;
|
|
189
|
+
}
|
|
186
190
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
191
|
+
.title-container-with-loader {
|
|
192
|
+
padding: 14px 5px 20px 0px;
|
|
193
|
+
}
|
|
190
194
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
195
|
+
.title {
|
|
196
|
+
font-size: 1.2em;
|
|
197
|
+
font-weight: 600;
|
|
198
|
+
padding-left: 10px;
|
|
199
|
+
min-width: 150px;
|
|
200
|
+
width: 100%;
|
|
201
|
+
white-space: nowrap;
|
|
202
|
+
overflow: hidden;
|
|
203
|
+
text-overflow: ellipsis;
|
|
204
|
+
}
|
|
201
205
|
|
|
202
206
|
|
|
203
|
-
|
|
204
|
-
|
|
207
|
+
.accordion-panel {
|
|
208
|
+
background-color: transparent !important;
|
|
205
209
|
|
|
206
|
-
|
|
210
|
+
}
|
|
207
211
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
+
.accordion-header {
|
|
213
|
+
padding-left: 10px;
|
|
214
|
+
padding-right: 10px;
|
|
215
|
+
border-radius: var(--mat-expansion-container-shape);
|
|
212
216
|
|
|
213
|
-
|
|
217
|
+
}
|
|
214
218
|
|
|
215
219
|
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
220
|
+
.mat-expansion-panel-body {
|
|
221
|
+
padding-left: 10px !important;
|
|
222
|
+
padding-right: 10px !important;
|
|
223
|
+
padding-bottom: 20px !important;
|
|
224
|
+
}
|
|
221
225
|
}
|
|
222
226
|
|
|
223
227
|
@media screen and (min-width: 0px) and (max-width: 430px) {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
228
|
+
|
|
229
|
+
.drawer,
|
|
230
|
+
.drawer-small {
|
|
231
|
+
border-radius: 0 !important;
|
|
232
|
+
min-width: 100% !important;
|
|
233
|
+
max-width: 100% !important;
|
|
234
|
+
}
|
|
230
235
|
}
|
|
231
236
|
|
|
232
237
|
@media screen and (min-width: 431px) {
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
238
|
+
.drawer {
|
|
239
|
+
min-width: 420px !important;
|
|
240
|
+
max-width: 420px !important;
|
|
237
241
|
|
|
238
|
-
.title {
|
|
239
|
-
min-width: 200px;
|
|
240
|
-
}
|
|
241
242
|
|
|
243
|
+
.title {
|
|
244
|
+
min-width: 200px;
|
|
245
|
+
}
|
|
242
246
|
|
|
243
|
-
.mat-expansion-panel-body {
|
|
244
|
-
padding-left: 15px !important;
|
|
245
|
-
padding-right: 15px !important;
|
|
246
|
-
padding-bottom: 20px !important;
|
|
247
|
-
}
|
|
248
247
|
|
|
248
|
+
.mat-expansion-panel-body {
|
|
249
|
+
padding-left: 15px !important;
|
|
250
|
+
padding-right: 15px !important;
|
|
251
|
+
padding-bottom: 20px !important;
|
|
249
252
|
}
|
|
250
253
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.drawer-small {
|
|
257
|
+
min-width: 360px !important;
|
|
258
|
+
max-width: 360px !important;
|
|
259
|
+
}
|
|
255
260
|
|
|
256
261
|
}
|
|
257
262
|
|