@covalent/core 11.19.5 → 11.19.7

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.
@@ -4,6 +4,7 @@
4
4
  @import 'divider';
5
5
  @import 'icons';
6
6
  @import 'list';
7
+ @import 'scrollbar';
7
8
  @import 'sidenav';
8
9
  @import 'structure';
9
10
  @import 'toolbar';
@@ -16,6 +17,7 @@
16
17
  @include td-divider-utilities();
17
18
  @include td-icon-utilities();
18
19
  @include td-list-utilities();
20
+ @include td-scrollbar-utilities();
19
21
  @include td-sidenav-utilities();
20
22
  @include td-structure-utilities();
21
23
  @include td-toolbar-utilities();
@@ -0,0 +1,34 @@
1
+ // Minimal scrollbar styling to match the host operating system
2
+ // Uses Covalent theme tokens for consistent appearance in light and dark modes
3
+
4
+ @mixin td-scrollbar-utilities() {
5
+ // Modern Firefox scrollbar styling
6
+ * {
7
+ scrollbar-width: thin;
8
+ scrollbar-color: var(--cv-theme-outline) var(--cv-theme-surface-container);
9
+ }
10
+
11
+ // WebKit browsers (Chrome, Safari, Edge, Opera)
12
+ *::-webkit-scrollbar {
13
+ width: 12px;
14
+ height: 12px;
15
+ }
16
+
17
+ *::-webkit-scrollbar-track {
18
+ background: var(--cv-theme-surface-container);
19
+ }
20
+
21
+ *::-webkit-scrollbar-thumb {
22
+ background: var(--cv-theme-outline);
23
+ border-radius: 6px;
24
+ border: 2px solid var(--cv-theme-surface-container);
25
+ }
26
+
27
+ *::-webkit-scrollbar-thumb:hover {
28
+ background: var(--cv-theme-on-surface-variant);
29
+ }
30
+
31
+ *::-webkit-scrollbar-corner {
32
+ background: var(--cv-theme-surface-container);
33
+ }
34
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@covalent/core",
3
- "version": "11.19.5",
3
+ "version": "11.19.7",
4
4
  "exports": {
5
5
  ".": {
6
6
  "sass": "./theming/_all-theme.scss",
@@ -82,7 +82,7 @@
82
82
  "@angular/router": "20.x.x",
83
83
  "@angular/cdk": "20.x.x",
84
84
  "@angular/material": "20.x.x",
85
- "@covalent/core": "11.19.5"
85
+ "@covalent/core": "11.19.7"
86
86
  },
87
87
  "dependencies": {
88
88
  "tslib": "^2.8.1"