Skip to content

Commit

Permalink
Fix [Cross projects] change filters state for Error and Skipped (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-prokopchuk authored Jun 20, 2024
1 parent ddc6a15 commit 47e1df6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/elements/SelectOption/selectOption.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
.all {
margin: 0;

@include statusState(none);
@include statusState(none, false);
}

.label-row {
Expand Down
10 changes: 8 additions & 2 deletions src/lib/scss/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,19 @@
}
}

@mixin statusState($color) {
@mixin statusState($color, $bordered) {
display: inline-block;
width: 8px;
height: 8px;
min-width: 8px;
background-color: $color;
border-radius: 50%;

@if $bordered == true {
background-color: transparent;
border: 1.5px solid $color;
} @else {
background-color: $color;
}
}

@mixin chipFont($color) {
Expand Down

0 comments on commit 47e1df6

Please sign in to comment.