Fix font size difference in API Connections dropdowns (#4620) - Fixes visual inconsistency between 'Enter a Model ID' input and 'Available Models' dropdown - Uses calc(var(--mainFontSize) * 0.95) to match the slightly smaller font size of the dropdown - Resolves issue #4599 This is the most minimal fix that targets only the specific element causing the visual difference. Co-authored-by: Trahloc <trahloc@hearth.trahloc.com>

c14d88dbe0353555f21507119c9931fd423672cb

Trahloc <github-com@trahloc.com>

Signed
1 files changed, +5 -0Showing whitespace changes
public/style.css+5 -0
@@ -3014,6 +3014,11 @@ select option[disabled]:not(:checked) {
30143014 display: block;
30153015}
30163016
3017+/* Fix font size difference in API Connections dropdowns - Issue #4599 */
3018+#custom_model_id {
3019+ font-size: calc(var(--mainFontSize) * 0.95);
3020+}
3021+
30173022.menu_button.api_button:hover {
30183023 background-color: var(--active);
30193024}