-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
18 lines (16 loc) · 707 Bytes
/
Copy pathstyle.css
File metadata and controls
18 lines (16 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
* Reasoning Effort: None — style.css
* Subtle visual cue on the None option so it reads as a "disable" action
* rather than just another level in the low→high progression.
*/
/* Dim the option slightly to signal it's a disabling action, not a level */
.reasoning-effort-none-option {
font-style: italic;
opacity: 0.85;
}
/* When None is actively selected, tint the select border amber
so the user has a clear reminder that reasoning is off */
#openai_reasoning_effort:has(option[value="none"]:checked) {
outline: 1px solid color-mix(in srgb, var(--warning-color, #e8a838) 60%, transparent);
border-color: color-mix(in srgb, var(--warning-color, #e8a838) 60%, transparent);
}