mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
Fix background on DropdownItem + make transitions on buttons quicker
This commit is contained in:
parent
f91f00a542
commit
cf223d615a
2 changed files with 9 additions and 0 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue