Skip to content

Commit

Permalink
feat: improve schedule styling
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Jun 19, 2024
1 parent 73b4423 commit a2accca
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/styles/components/date-time-picker-schedule.scss
Original file line number Diff line number Diff line change
Expand Up @@ -738,8 +738,7 @@ $owl-missing: $owl-light-selected-bg !default;
color: $owl-dark-text-color-strong;
}

&.isActive {
border-color: $c-primary;
&:hover {
outline: none;
background: $owl-light-selected-bg;
opacity: 1;
Expand All @@ -749,7 +748,8 @@ $owl-missing: $owl-light-selected-bg !default;
}
}

&:hover {
&:focus {
border-color: $c-primary !important;
outline: none;
background: $owl-light-selected-bg;
opacity: 1;
Expand All @@ -758,6 +758,16 @@ $owl-missing: $owl-light-selected-bg !default;
background: $owl-dark-light-selected-bg;
}
}

&.isActive {
background: $c-primary !important;
color: $c-contrast;
outline: none;
border-color: $owl-light-selected-bg;
@include darkTheme(true) {
border-color: $owl-dark-light-selected-bg;
}
}
}

$ico-size: 24px;
Expand Down

0 comments on commit a2accca

Please sign in to comment.