Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion ui/litellm-dashboard/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
--warning: oklch(0.828 0.189 84.429);
--info: oklch(0.707 0.165 254.624);
--border: oklch(0.309 0 0);
--input: oklch(0.309 0 0);
--input: oklch(0.56 0 0);
--ring: oklch(0.569 0 0);
--chart-1: oklch(0.488 0.243 264.376);
--chart-2: oklch(0.696 0.17 162.48);
Expand Down Expand Up @@ -230,6 +230,13 @@
letter-spacing: inherit;
}

/* Same plugin's white fill, on the hand-rolled controls outside components/ui that the audit
above did not cover. Tracks --background so light mode keeps the white it already painted.
Delete along with the plugin. */
Comment thread
greptile-apps[bot] marked this conversation as resolved.
:is(input, textarea, select):not([type="checkbox"], [type="radio"], [data-slot="combobox-chip-input"]) {
background-color: var(--color-background);
}

button:not(:disabled),
[role="button"]:not(:disabled) {
cursor: pointer;
Expand Down
Loading