dropdown scrollbar
3clyp50 committed
Jan 2, 2026 at 12:15 UTC
b53ab41d28ba4b5bffcbdf68476f532b3e565235
1 file changed
+22
webui/components/sidebar/top-section/quick-actions.html
+22
@@ -185,6 +185,28 @@
185
margin-top: var(--spacing-xs);
186
}
187
188
+ /* Unified scrollbar styling for dropdown */
189
+ .quick-actions-dropdown::-webkit-scrollbar {
190
+ width: 6px;
191
+ height: 6px;
192
+ }
193
+
194
+ .quick-actions-dropdown::-webkit-scrollbar-track {
195
+ background: transparent;
196
+ margin: 4px 0;
197
+ border-radius: 6px;
198
+ }
199
+
200
+ .quick-actions-dropdown::-webkit-scrollbar-thumb {
201
+ background-color: rgba(155, 155, 155, 0.5);
202
+ border-radius: 6px;
203
+ transition: background-color 0.2s ease;
204
+ }
205
+
206
+ .quick-actions-dropdown::-webkit-scrollbar-thumb:hover {
207
+ background-color: rgba(155, 155, 155, 0.7);
208
+ }
209
+
210
/* Dropdown item icon sizing */
211
.dropdown-item .material-symbols-outlined {
212
font-size: 18px;