mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Add support for favorite Studios (#4675)
* Backend changes * Add favorite icon to studio cards * Add favorite button to studio page * Add studio favorite filtering
This commit is contained in:
@@ -528,3 +528,27 @@ div.react-datepicker {
|
||||
align-items: baseline;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
button.btn.favorite-button {
|
||||
opacity: 1;
|
||||
transition: opacity 0.5s;
|
||||
|
||||
&.not-favorite {
|
||||
color: rgba(191, 204, 214, 0.5);
|
||||
filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.9));
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
&.favorite {
|
||||
color: #ff7373;
|
||||
filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.9));
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus,
|
||||
&:active:focus {
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user