Skip to content

Commit

Permalink
MID-8094 fixed tile styles, differentiation between .active and :hover
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Sep 13, 2022
1 parent e44004c commit bb921ac
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions gui/admin-gui/src/frontend/scss/_tiles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
@mixin selectable-tile {
cursor: pointer;

&:hover,
&:hover {
border: 2px solid $input-border-color;
border-radius: $border-radius;
}

&.active {
border: 2px solid $primary;
border-radius: $border-radius;
Expand All @@ -40,7 +44,10 @@
}

@mixin selectable-tile-dark-mode {
&:hover,
&:hover {
border-color: $gray-400;
}

&.active {
border-color: $primary-alt;
}
Expand Down

0 comments on commit bb921ac

Please sign in to comment.