You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a theming developer
I want define the style of outline used for focus indicators
So that I can match established branding for that website
Description
While outline width and outline offset are configurable variables, the outline-style is not.
Further to this, the outline-style used in input fields is not using the ct-outline() mixin, but is re-defined.
This means that updating the style from solid to anything else requires multiple overrides.
There should be a $ct-outline-style: solid !default; variable defined in variables.components.scss, and used throughout for focus indicators.
Acceptance criteria
Given I am a theming developer
When I add $ct-outline-style: dotted; in variables.components.scss
Then I should see all focus indicators use the dotted style.
The text was updated successfully, but these errors were encountered:
User story
As a theming developer
I want define the style of outline used for focus indicators
So that I can match established branding for that website
Description
While
outline width
andoutline offset
are configurable variables, theoutline-style
is not.Further to this, the outline-style used in input fields is not using the
ct-outline()
mixin, but is re-defined.This means that updating the style from
solid
to anything else requires multiple overrides.There should be a
$ct-outline-style: solid !default;
variable defined in variables.components.scss, and used throughout for focus indicators.Acceptance criteria
Given I am a theming developer
When I add
$ct-outline-style: dotted;
in variables.components.scssThen I should see all focus indicators use the dotted style.
The text was updated successfully, but these errors were encountered: