@arsedizioni/ars-utils 22.0.60 → 22.0.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "22.0.60",
3
+ "version": "22.0.62",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -0,0 +1,28 @@
1
+
2
+ html,
3
+ body,
4
+ * {
5
+ scrollbar-width: thin;
6
+ scrollbar-color: light-dark(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2)) transparent;
7
+ }
8
+
9
+ ::-webkit-scrollbar {
10
+ width: 8px;
11
+ height: 8px;
12
+ }
13
+
14
+ ::-webkit-scrollbar-track {
15
+ background: transparent;
16
+ }
17
+
18
+ ::-webkit-scrollbar-thumb {
19
+ background-color: light-dark(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2));
20
+ border-radius: 9999px;
21
+ border: 2px solid transparent;
22
+ }
23
+
24
+ ::-webkit-scrollbar-thumb:hover {
25
+ background-color: light-dark(rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.4));
26
+ }
27
+
28
+ @media (prefers-color-scheme: dark) {}
package/styles/ui.scss CHANGED
@@ -20,9 +20,9 @@
20
20
  }
21
21
 
22
22
  .dialog-toolbar {
23
- padding: 0 5px 0 24px;
24
- height: 48px;
25
- min-height: 48px;
23
+ padding: 0 5px 0 24px;
24
+ height: 48px;
25
+ min-height: 48px;
26
26
  }
27
27
 
28
28
  .dialog-close {
@@ -347,4 +347,30 @@ b {
347
347
  }
348
348
 
349
349
 
350
+ html,
351
+ body,
352
+ * {
353
+ scrollbar-width: thin;
354
+ scrollbar-color: light-dark(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2)) transparent;
355
+ }
356
+
357
+ ::-webkit-scrollbar {
358
+ width: 8px;
359
+ height: 8px;
360
+ }
361
+
362
+ ::-webkit-scrollbar-track {
363
+ background: transparent;
364
+ }
365
+
366
+ ::-webkit-scrollbar-thumb {
367
+ background-color: light-dark(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2));
368
+ border-radius: 9999px;
369
+ border: 2px solid transparent;
370
+ }
371
+
372
+ ::-webkit-scrollbar-thumb:hover {
373
+ background-color: light-dark(rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.4));
374
+ }
375
+
350
376
  @media (prefers-color-scheme: dark) {}