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:
@@ -5,3 +5,35 @@
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.studio-card {
|
||||
button.btn.favorite-button {
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
right: 5px;
|
||||
top: 10px;
|
||||
|
||||
svg.fa-icon {
|
||||
margin-left: 0.4rem;
|
||||
margin-right: 0.4rem;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover button.btn.favorite-button.not-favorite {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
#studio-page {
|
||||
.studio-head {
|
||||
.name-icons {
|
||||
.not-favorite {
|
||||
color: rgba(191, 204, 214, 0.5);
|
||||
}
|
||||
|
||||
.favorite {
|
||||
color: #ff7373;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user