Fix background on DropdownItem + make transitions on buttons quicker

This commit is contained in:
Henrik Giesel 2021-05-24 19:53:30 +02:00
parent f91f00a542
commit cf223d615a
2 changed files with 9 additions and 0 deletions

View file

@ -28,6 +28,10 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
justify-content: space-between; justify-content: space-between;
font-size: calc(var(--toolbar-size) / 2.3); font-size: calc(var(--toolbar-size) / 2.3);
background: none;
box-shadow: none;
border: none;
} }
.btn-day { .btn-day {

View file

@ -22,3 +22,8 @@ body,
html { html {
overscroll-behavior: none; overscroll-behavior: none;
} }
button {
/* override transition for instant hover response */
transition: color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}