Feature: Favorites added to assets, Bulk Fav/unfav, adds favs to client overview

This commit is contained in:
johnnyq
2026-02-03 22:23:20 -05:00
parent f39e6ccbc9
commit 65d1f59e9b
14 changed files with 425 additions and 73 deletions

View File

@@ -1,6 +1,6 @@
/*
For screens below 576px (xs):
- Make the button full-width, display:block
/*
For screens below 576px (xs):
- Make the button full-width, display:block
*/
@media (max-width: 575.98px) {
.btn-responsive {
@@ -9,9 +9,9 @@
}
}
/*
/*
For screens 576px (sm) and above:
- Revert to an inline style
- Revert to an inline style
*/
@media (min-width: 576px) {
.btn-responsive {
@@ -26,4 +26,19 @@
.drag-handle:active {
cursor: grabbing !important;
}
}
.star-toggle input {
display: none;
}
.star-toggle i {
cursor: pointer;
font-size: 1.2rem;
color: #adb5bd;
}
.star-toggle input:checked + i {
color: #f1c40f;
font-weight: 900;
}