-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(combo, select): update indigo colors #305
Conversation
@@ -151,12 +151,18 @@ $bootstrap-select: extend( | |||
|
|||
/// Generates an indigo select schema. | |||
/// @type {Map} | |||
/// @prop {Map} toggle-button-background [trasnparent] - The select toggle button background color. | |||
/// @prop {Map} toggle-button-background-focus [transparent] - The select toggle button background color when the select is focused. | |||
/// @prop {Map} toggle-button-background-focus--border [color: ('gray', 300)] The select toggle button background color when the select is focused. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The value of toggle-button-background-focus--border should be transparent
/// @prop {Map} toggle-button-foreground-disabled [color: ('gray', 300)] - The combo toggle button foreground color when the combo is disabled. | ||
/// @prop {Color} toggle-button-background-disabled [transparent] - The combo toggle button background color when the combo is disabled. | ||
/// @requires {Map} $light-combo | ||
$indigo-combo: extend( | ||
$light-combo, | ||
( | ||
empty-list-placeholder-color: ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty-list-placeholder-color is not documented
/// @prop {Map} toggle-button-background-disabled [transparent] - The combo toggle button background color when the combo is disabled. | ||
/// @prop {Map} toggle-button-foreground [color: ('gray', 700)] - The combo toggle button foreground color. | ||
/// @prop {Map} toggle-button-foreground-focus [color: ('gray', 700)] - The combo toggle button foreground color when the combo is focused. | ||
/// @prop {Map} toggle-button-foreground-filled [color: ('gray', 900)] - The combo toggle button foreground color when the combo is focused. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
toggle-button-foreground,
toggle-button-foreground-focus,
toggle-button-foreground-filled
Those are not used in this schema, you can remove them
@desig9stein can you do a second round of reviews, please? |
… Select (#310) * refactor(json): don't log out a comment with no context (#217) * Indigo: Add grid-related updates (#303) * refactor(combo, select): update indigo colors (#305) * calendar - update light and dark schemas according to new design (#300) * calendar - fix indigo colors for light and dark schemas (#320) * refactor(combo, select): update indigo color props * indigo calendar fixes (#321) * fix(calendar): fix indigo schema colors (#322) * refactor(grid): update indigo colors (#323) * refactor(combo): update clear icon colors for dark indigo * Update indigo grid schemas (#331) * refactor(grid): update schema colors * refactor(grid): make sure that row odd and event text color inherit their value from content-text-color make sure that content-text-color is set to gra 900 * feat(grid): update schema colors * feat(grid): update schema colors * fix(grid): remove content-text-color form indigo schema since it has to be gray 800 in light theme. * fix(grid): Update indigo schema colors * refactor(grid): fix row drag bg colors --------- Co-authored-by: Marin Popov <[email protected]> Co-authored-by: desig9stein <[email protected]>
Closes #302
Closes #301