This commit is contained in:
Marks Polakovs 2020-06-08 15:48:51 +02:00
parent 62410928f5
commit c7629a862f
2 changed files with 10 additions and 2 deletions

View file

@ -186,7 +186,10 @@ export function NavBar() {
</a>
<button
className="dropdown-item"
onClick={() => sessionState.currentTimeslot !== null && dispatch(getShowplan(sessionState.currentTimeslot.timeslot_id))}
onClick={() =>
sessionState.currentTimeslot !== null &&
dispatch(getShowplan(sessionState.currentTimeslot.timeslot_id))
}
>
Reload Show Plan
</button>

View file

@ -193,7 +193,12 @@ $dot-color: #fff;
}
.navbar-ury .navbar-nav .open .dropdown-menu > .active > .dropdown-item,
.navbar-ury .navbar-nav .open .dropdown-menu > .active > .dropdown-item:hover,
.navbar-ury .navbar-nav .open .dropdown-menu > .active > .dropdown-item:focus {
.navbar-ury
.navbar-nav
.open
.dropdown-menu
> .active
> .dropdown-item:focus {
color: #e1e1e1;
background-color: #2d425f;
}