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:
WithoutPants
2020-03-06 20:02:02 +11:00
committed by GitHub
parent 088ddc9df4
commit cb594f0e43
20 changed files with 5381 additions and 92 deletions

View File

@@ -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()}