Details operation toolbar (#4714)

* Add scene detail header
* Make common count button and add view count
* Add titles to play count and o count buttons
* Move rating from edit panel
* Include frame rate in header
* Remove redundant title/studio
* Improve numeric rating presentation
* Add star where there is no rating header
* Set rating on blur when click to edit
* Add star to numeric rating on gallery wall card
* Apply click to rate on movie page
* Apply click to rate to performer page
* Apply click to rate to studio page
* Fix rating number presentation on list tables
* Add data-value attributes
This commit is contained in:
WithoutPants
2024-04-17 10:29:36 +10:00
committed by GitHub
parent 911da87264
commit ec6acab2f4
32 changed files with 752 additions and 336 deletions

View File

@@ -552,3 +552,43 @@ button.btn.favorite-button {
box-shadow: none;
}
}
.count-button {
border-radius: 5px;
&:hover {
background: rgba(138, 155, 168, 0.15);
color: #f5f8fa;
}
.count-icon {
padding-left: 0.5rem;
padding-right: 0.25rem;
}
.count-value {
padding-left: 0.25rem;
padding-right: 0.5rem;
}
button.count-icon,
&.increment-only button.count-value {
&:hover {
background: none;
color: #f5f8fa;
}
}
button.btn-secondary.count-icon,
button.btn-secondary.count-value {
&:focus {
border: none;
box-shadow: none;
color: #f5f8fa;
&:not(:hover) {
background: none;
}
}
}
}