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>
Signed| @@ -3014,6 +3014,11 @@ select option[disabled]:not(:checked) { | |||
| 3014 | display: block; | 3014 | display: block; |
| 3015 | } | 3015 | } |
| 3016 | 3016 | ||
| 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 | |||
| 3017 | .menu_button.api_button:hover { | 3022 | .menu_button.api_button:hover { |
| 3018 | background-color: var(--active); | 3023 | background-color: var(--active); |
| 3019 | } | 3024 | } |