diff --git a/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx b/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx index e3bffd9d3..35596ad0c 100644 --- a/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx +++ b/ui/v2.5/src/components/SceneFilenameParser/SceneParserRow.tsx @@ -11,6 +11,7 @@ import { StudioSelect, } from "src/components/Shared"; import { TextUtils } from "src/utils"; +import cx from "classnames"; class ParserResult { public value?: T; @@ -121,7 +122,7 @@ function SceneParserStringField(props: ISceneParserFieldProps) { @@ -164,13 +165,13 @@ function SceneParserRatingField( ) => @@ -216,8 +217,14 @@ function SceneParserPerformerField(props: ISceneParserFieldProps) { - + { @@ -253,8 +260,14 @@ function SceneParserTagField(props: ISceneParserFieldProps) { - + { @@ -292,8 +305,13 @@ function SceneParserStudioField(props: ISceneParserFieldProps) { - + { maybeValueChanged(items[0].id); @@ -390,7 +408,7 @@ export const SceneParserRow = (props: ISceneParserRowProps) => { {props.showFields.get("Rating") && ( onRatingChanged(isSet, props.scene.rating.value ?? undefined) @@ -403,7 +421,7 @@ export const SceneParserRow = (props: ISceneParserRowProps) => { {props.showFields.get("Performers") && ( @@ -417,7 +435,7 @@ export const SceneParserRow = (props: ISceneParserRowProps) => { {props.showFields.get("Tags") && ( @@ -431,7 +449,7 @@ export const SceneParserRow = (props: ISceneParserRowProps) => { {props.showFields.get("Studio") && ( diff --git a/ui/v2.5/src/components/SceneFilenameParser/styles.scss b/ui/v2.5/src/components/SceneFilenameParser/styles.scss index 8a9bef656..3f8640e8b 100644 --- a/ui/v2.5/src/components/SceneFilenameParser/styles.scss +++ b/ui/v2.5/src/components/SceneFilenameParser/styles.scss @@ -26,6 +26,12 @@ width: 30ch; } + .parser-field-performers-select, + .parser-field-tags-select, + .parser-field-studio-select { + margin-bottom: 0.5rem; + } + .parser-field-tags { width: 30ch; } diff --git a/ui/v2.5/src/index.scss b/ui/v2.5/src/index.scss index fae797154..345614f41 100755 --- a/ui/v2.5/src/index.scss +++ b/ui/v2.5/src/index.scss @@ -73,13 +73,6 @@ dd { } } -.text-input, -.text-input:focus, -.text-input[readonly], -.text-input:disabled { - background-color: $textfield-bg; -} - .input-control, .input-control:focus, .input-control:disabled { @@ -90,6 +83,13 @@ dd { opacity: 0.8; } +.text-input, +.text-input:focus, +.text-input[readonly], +.text-input:disabled { + background-color: $textfield-bg; +} + textarea.text-input { line-height: 2.5ex; min-height: 12ex;