Fresh 0.16

- highlighted wall item links
 - refactored the spinner
This commit is contained in:
Devops 2024-02-03 09:07:05 -08:00
parent fdfd319804
commit 70c322c06d
2 changed files with 39 additions and 3 deletions

View file

@ -1,6 +1,6 @@
name: Fresh
description: 'A Fresh new look for Streams.'
version: 'Version: 0.14'
version: 'Version: 0.16'
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

@ -300,7 +300,14 @@ nav .acpopup {
}
.wall-item-lock .dropdown-menu {
min-width: 20rem;
padding: 5px;
padding: 10px;
}
.wall-item-lock .dropdown-menu .dropdown-item {
padding: 0;
}
.wall-item-lock .dropdown-menu .dropdown-item:hover {
background: none;
color: $link_color;
}
.menu-img-1, .menu-img-2, .menu-img-3 {
margin-right: 5px;
@ -813,6 +820,12 @@ i.fa-chevron-down,
i.fa-chevron-up {
font-size: 1.4rem;
}
.wall-item-lock .fa {
color: $link_color;
}
.wall-item-lock .fa:hover {
color: $link_hover;
}
.wall-item-tools-left .dropdown-item {
width: max-content;
}
@ -1262,6 +1275,29 @@ 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;
border-right: 3px solid transparent;
box-sizing: border-box;
animation: rotation 1s linear infinite;
border-bottom: none;
border-left: none;
position: initial;
margin-left: 48%
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
}
.acl-button-hide, .acl-button-show {
float: right;
}
@ -1466,7 +1502,7 @@ img.mail-conv-sender-photo {
--bs-warning-rgb: $warning;
--bs-danger-rgb: $danger;
--bs-light-rgb: $subtle_shade;
--bs-dark-rgb: $contrast_sahde;
--bs-dark-rgb: $contrast_shade;
--bs-font-monospace: "Liberation Mono","Courier New",monospace;
--bs-body-font-size: 0.9rem;
--bs-body-color: $font_color;