diff --git a/frontend/src/features/system/components/ModelManager/SearchModels.tsx b/frontend/src/features/system/components/ModelManager/SearchModels.tsx index 26731c79ab..f5a67220be 100644 --- a/frontend/src/features/system/components/ModelManager/SearchModels.tsx +++ b/frontend/src/features/system/components/ModelManager/SearchModels.tsx @@ -235,7 +235,7 @@ export default function SearchModels() { style={{ fontWeight: 'bold', fontSize: '0.8rem', - backgroundColor: 'var(--accent-color)', + backgroundColor: 'var(--background-color-secondary)', padding: '0.2rem 1rem', width: 'max-content', borderRadius: '0.2rem', @@ -301,34 +301,6 @@ export default function SearchModels() { )} {foundModels && ( - {foundModels.length > 0 ? ( - - {t('modelmanager:selectAndAdd')} - - ) : ( - - {t('modelmanager:noModelsFound')} - - )} -

{t('modelmanager:modelsFound')}: {foundModels.length} @@ -367,6 +339,9 @@ export default function SearchModels() { 0 ? 'var(--accent-color) !important' : '' + } > {t('modelmanager:addSelected')} @@ -380,6 +355,36 @@ export default function SearchModels() { paddingLeft="0.2rem" borderRadius="0.2rem" > + {foundModels.length > 0 ? ( + modelsToAdd.length === 0 && ( + + {t('modelmanager:selectAndAdd')} + + ) + ) : ( + + {t('modelmanager:noModelsFound')} + + )} + {renderFoundModels()} diff --git a/frontend/src/styles/Themes/_Colors_Dark.scss b/frontend/src/styles/Themes/_Colors_Dark.scss index 194ee6ebd4..c41afc3fda 100644 --- a/frontend/src/styles/Themes/_Colors_Dark.scss +++ b/frontend/src/styles/Themes/_Colors_Dark.scss @@ -89,6 +89,7 @@ --status-working-glow: rgb(255, 160, 55); --status-bad-color: rgb(255, 90, 90); --status-bad-glow: rgb(255, 40, 40); + --notice-color: rgb(130, 71, 19); // Settings Modal --settings-modal-bg: rgb(30, 32, 42); diff --git a/frontend/src/styles/Themes/_Colors_Green.scss b/frontend/src/styles/Themes/_Colors_Green.scss index 9ccc2d1ce0..2ed52c6408 100644 --- a/frontend/src/styles/Themes/_Colors_Green.scss +++ b/frontend/src/styles/Themes/_Colors_Green.scss @@ -87,6 +87,7 @@ --status-working-glow: rgb(255, 160, 55); --status-bad-color: rgb(255, 90, 90); --status-bad-glow: rgb(255, 40, 40); + --notice-color: rgb(130, 71, 19); // Settings Modal --settings-modal-bg: rgb(30, 32, 42); diff --git a/frontend/src/styles/Themes/_Colors_Light.scss b/frontend/src/styles/Themes/_Colors_Light.scss index ac22a82cb1..190830ccf9 100644 --- a/frontend/src/styles/Themes/_Colors_Light.scss +++ b/frontend/src/styles/Themes/_Colors_Light.scss @@ -84,6 +84,7 @@ --status-working-glow: var(--background-color); --status-bad-color: rgb(202, 0, 0); --status-bad-glow: var(--background-color); + --notice-color: rgb(255, 71, 90); // Settings Modal --settings-modal-bg: rgb(202, 204, 206);