mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Fix various issues with v2.5 UI (#390)
* Fix navbar collapse breakpoint * Fix list filter colors and height * Make styling similar to v2 * Fix scene card zoom and orientation * Keep p tag even without details * Fix custom css * Default settings tab to tasks * Fix flickering progress bar. Fix percentage. * Fix unsetting studio * Fix scene gallery select * Don't hide edit on small devices * Fix log dropdown style * Use monospace for custom css input
This commit is contained in:
@@ -167,8 +167,8 @@ export const SettingsTasksPanel: React.FC = () => {
|
||||
<>
|
||||
<Form.Group>
|
||||
<h5>Status: {status}</h5>
|
||||
{status !== "Idle" ? (
|
||||
<ProgressBar now={progress} label={`${progress}%`} />
|
||||
{!!status && status !== "Idle" ? (
|
||||
<ProgressBar animated now={progress} label={`${progress.toFixed(0)}%`} />
|
||||
) : (
|
||||
""
|
||||
)}
|
||||
@@ -183,7 +183,7 @@ export const SettingsTasksPanel: React.FC = () => {
|
||||
{renderImportAlert()}
|
||||
{renderCleanAlert()}
|
||||
|
||||
<h5>Running Jobs</h5>
|
||||
<h4>Running Jobs</h4>
|
||||
|
||||
{renderJobStatus()}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user