@kumori/aurora-wui-components 0.0.269 → 0.0.270
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/components/axebow-button/axebow-button.d.ts +3 -0
- package/dist/components/axebow-button/axebow-button.d.ts.map +1 -1
- package/dist/components/axebow-deploy-card/axebow-deploy-card.d.ts.map +1 -1
- package/dist/index.js +99 -36
- package/dist/index.js.map +1 -1
- package/dist/styles/axebow-theme.d.ts.map +1 -1
- package/dist/styles/shoelace-style.css +62 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axebow-theme.d.ts","sourceRoot":"","sources":["../../src/styles/axebow-theme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"axebow-theme.d.ts","sourceRoot":"","sources":["../../src/styles/axebow-theme.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,yBAuJvB,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;CAKhB,CAAC"}
|
|
@@ -47,3 +47,65 @@ sl-menu-item::part(label),
|
|
|
47
47
|
sl-option::part(label) {
|
|
48
48
|
font-size: var(--text-base); /* 12px */
|
|
49
49
|
}
|
|
50
|
+
|
|
51
|
+
/* Custom Scrollbar Styles for Shoelace Dropdown, Select, and Menu */
|
|
52
|
+
:root {
|
|
53
|
+
--axebow-scrollbar-line-color: var(--axebow-tertiary, #e51c8e);
|
|
54
|
+
--axebow-scrollbar-track-color: #f0f1f5;
|
|
55
|
+
--axebow-scrollbar-thumb-color: #cbd5e1;
|
|
56
|
+
--axebow-scrollbar-thumb-hover-color: #94a3b8;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* Webkit/Blink Scrollbars */
|
|
60
|
+
sl-select::part(listbox)::-webkit-scrollbar,
|
|
61
|
+
sl-dropdown::part(panel)::-webkit-scrollbar,
|
|
62
|
+
sl-menu::part(base)::-webkit-scrollbar {
|
|
63
|
+
width: 11px;
|
|
64
|
+
height: 11px;
|
|
65
|
+
border-left: 2px solid var(--axebow-scrollbar-line-color);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
sl-select::part(listbox)::-webkit-scrollbar-button,
|
|
69
|
+
sl-dropdown::part(panel)::-webkit-scrollbar-button,
|
|
70
|
+
sl-menu::part(base)::-webkit-scrollbar-button {
|
|
71
|
+
display: none;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
sl-select::part(listbox)::-webkit-scrollbar-track,
|
|
75
|
+
sl-dropdown::part(panel)::-webkit-scrollbar-track,
|
|
76
|
+
sl-menu::part(base)::-webkit-scrollbar-track {
|
|
77
|
+
background-color: var(--axebow-scrollbar-track-color);
|
|
78
|
+
background-clip: padding-box;
|
|
79
|
+
border-left: 3px solid transparent; /* Gap between pink line and track */
|
|
80
|
+
border-right: 2px solid transparent;
|
|
81
|
+
border-top: 2px solid transparent;
|
|
82
|
+
border-bottom: 2px solid transparent;
|
|
83
|
+
border-radius: 9999px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
sl-select::part(listbox)::-webkit-scrollbar-thumb,
|
|
87
|
+
sl-dropdown::part(panel)::-webkit-scrollbar-thumb,
|
|
88
|
+
sl-menu::part(base)::-webkit-scrollbar-thumb {
|
|
89
|
+
background-color: var(--axebow-scrollbar-thumb-color);
|
|
90
|
+
background-clip: padding-box;
|
|
91
|
+
border-left: 3px solid transparent; /* Gap between pink line and thumb */
|
|
92
|
+
border-right: 2px solid transparent;
|
|
93
|
+
border-top: 2px solid transparent;
|
|
94
|
+
border-bottom: 2px solid transparent;
|
|
95
|
+
border-radius: 9999px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
sl-select::part(listbox)::-webkit-scrollbar-thumb:hover,
|
|
99
|
+
sl-dropdown::part(panel)::-webkit-scrollbar-thumb:hover,
|
|
100
|
+
sl-menu::part(base)::-webkit-scrollbar-thumb:hover {
|
|
101
|
+
background-color: var(--axebow-scrollbar-thumb-hover-color);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/* Firefox Scrollbars */
|
|
105
|
+
sl-select::part(listbox),
|
|
106
|
+
sl-dropdown::part(panel),
|
|
107
|
+
sl-menu::part(base) {
|
|
108
|
+
scrollbar-width: thin;
|
|
109
|
+
scrollbar-color: var(--axebow-scrollbar-thumb-color) transparent;
|
|
110
|
+
}
|
|
111
|
+
|