Skip to content
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

chore(ci): add focus style for buttons #288

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions projects/core/src/accordion/accordion-header.element.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* component, enabling them to create a stepper component that aligns with the
* style of the ng-clarity stepper.
*/

:host {
--color: #{$cds-alias-object-interaction-color};
--background: #{$cds-alias-object-container-background-tint};
Expand Down
10 changes: 10 additions & 0 deletions projects/core/src/forms/control-inline/control-inline.element.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ cds-internal-control-label {
outline: 0 !important;
}

//cds-control-action /deep div {
// outline: 5px solid black !important;
//}

.private-host:hover,
.private-host:focus,
.private-host:active {
outline: 0.3rem solid black !important;
}

[focusable] {
content: '';
position: absolute;
Expand Down
Loading