diff options
author | Andrew Godwin | 2022-11-22 19:21:01 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-22 19:21:01 -0700 |
commit | 9c424d9bb6aa0eb606128bcce3e33816967a2e8d (patch) | |
tree | 6a30edbc00381ce919e17caa89d6eaad54c586e4 /static | |
parent | aaad289c5211570ec98ddd9d753517ef827686dc (diff) | |
download | takahe-9c424d9bb6aa0eb606128bcce3e33816967a2e8d.tar.gz takahe-9c424d9bb6aa0eb606128bcce3e33816967a2e8d.tar.bz2 takahe-9c424d9bb6aa0eb606128bcce3e33816967a2e8d.zip |
Add manual HTMX refresh of timelines
Refs #33
Diffstat (limited to 'static')
-rw-r--r-- | static/css/style.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css index 83ea194..63d94d4 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -187,6 +187,22 @@ header menu a i { vertical-align: middle; } +header menu a.htmx-request i { + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-name: fa-spin; + animation-name: fa-spin; + -webkit-animation-duration: var(--fa-animation-duration, 2s); + animation-duration: var(--fa-animation-duration, 2s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, linear); + animation-timing-function: var(--fa-animation-timing, linear); +} + + header menu .gap { flex-grow: 1; } |