mirror of
https://github.com/unraid/api.git
synced 2026-01-08 09:39:49 -06:00
- Updated CSS variables and utility classes for improved theme integration and style consistency across components. - Introduced a new responsive modal component to enhance user experience on various screen sizes. - Refined button and badge styles to ensure better visual hierarchy and interaction feedback. - Adjusted component imports and structure for better modularity and maintainability. - Removed deprecated styles and streamlined CSS for improved performance and clarity.
21 lines
952 B
CSS
21 lines
952 B
CSS
/*
|
|
* Minimal resets for reka-ui components
|
|
* Only override the problematic webgui button styles
|
|
*/
|
|
|
|
/* Target all reka-ui buttons by their common attributes */
|
|
button[id^="reka-accordion-trigger"],
|
|
button[role="combobox"],
|
|
button[aria-haspopup="menu"],
|
|
[role="dialog"] button[type="button"] {
|
|
/* Only override the truly problematic styles */
|
|
font-family: inherit !important; /* Don't force clear-sans */
|
|
font-size: inherit !important; /* Don't force 1.1rem */
|
|
font-weight: normal !important; /* Don't force bold */
|
|
letter-spacing: normal !important; /* Don't force 1.8px spacing */
|
|
text-transform: none !important; /* Don't force uppercase */
|
|
min-width: auto !important; /* Don't force 86px minimum */
|
|
margin: 0 !important; /* Don't add 10px margins */
|
|
border: none !important; /* Remove forced border */
|
|
/* Let components handle their own padding through Tailwind classes */
|
|
} |