Skip to content

Commit

Permalink
adjusted field and fieldtext
Browse files Browse the repository at this point in the history
  • Loading branch information
dutchcelt committed Jan 5, 2024
1 parent f999d0b commit 637dff5
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions system.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,23 @@
ButtonBorder
); /* ButtonBorder is broken in Safari */
--system-button-face: transparent; /* ButtonFace is broken in Safari */
--system-button-text: CanvasText; /* ButtonText is broken in Safari */
--system-button-text: color-mix(
in oklab,
ButtonText var(--system-cs-state),
var(--system-canvas-text)
); /* ButtonText is broken in Safari */
--system-canvas: Canvas;
--system-canvas-text: CanvasText;
--system-field: Field;
--system-field-text: FieldText;
--system-field: color-mix(
in oklab,
Field var(--system-cs-state),
var(--system-canvas)
); /* Field is broken in iOS */
--system-field-text: color-mix(
in oklab,
FieldText var(--system-cs-state),
var(--system-canvas-text)
); /* FieldText is broken in iOS */
--system-gray-text: GrayText;
--system-highlight: color-mix(
in oklab,
Expand Down Expand Up @@ -131,6 +143,7 @@
--system-dimension-content-width: 85ch;
--system-radius: clamp(3px, 0.6666ex, var(--system-spacing-single));
}
}

/* MODIFIERS ########################################################################## */

Expand Down

0 comments on commit 637dff5

Please sign in to comment.