Merge pull request '- Fixed the spinner for small page updates, as with hitting the "Like" buttons.' (#165) from KnTHost/streams:fresh-0.22 into dev

Reviewed-on: https://codeberg.org/streams/streams/pulls/165
This commit is contained in:
(streams) 2024-05-19 20:53:10 +00:00
commit d4f900b706
2 changed files with 12 additions and 6 deletions

View file

@ -1,6 +1,6 @@
name: Fresh
description: 'A Fresh new look for Streams.'
version: 'Version: 0.20'
version: 'Version: 0.22'
credits: 'Development provided by: <a href="https://www.knthost.com/streams">K&T Host - (www.knthost.com)</a>'
author: 'K&T Host'
maintainer:

View file

@ -1280,8 +1280,6 @@ img.mail-conv-sender-photo {
/* misc items */
.spinner.s, .spinner.m, .spinner.l {
width: 48px;
height: 48px;
border-radius: 50%;
display: inline-block;
border-top: 3px solid $primary;
@ -1291,8 +1289,7 @@ img.mail-conv-sender-photo {
border-bottom: none;
border-left: none;
position: initial;
margin-left: 48%
}
}
@keyframes rotation {
0% {
transform: rotate(0deg);
@ -1300,7 +1297,16 @@ img.mail-conv-sender-photo {
100% {
transform: rotate(360deg);
}
}
}
.spinner.l, .spinner.m {
width: 50px;
height: 50px;
margin-left: 48%;
}
.spinner.s {
width: 30px;
height: 30px;
margin-left: 0%;
}
.acl-button-hide, .acl-button-show {
float: right;