返回 DeepSeek-Reasonix
SettingsOptions.css
根目录 / desktop / frontend / src / components / SettingsOptions.css
1 :root .settings-options {
2 display: inline-flex;
3 max-width: 100%;
4 min-width: 0;
5 padding: 0;
6 gap: 0;
7 border: 1px solid var(--border);
8 border-radius: 7px;
9 background: var(--bg);
10 overflow: hidden;
11 }
12
13 :root .settings-options.settings-options--field {
14 width: 424px;
15 max-width: 100%;
16 }
17
18 :root .settings-options.settings-options--fill {
19 width: 100%;
20 }
21
22 :root .settings-options > button {
23 flex: 1 1 0;
24 min-width: 0;
25 min-height: 34px;
26 padding: 6px 13px;
27 border: 0;
28 border-radius: 0;
29 background: transparent;
30 color: var(--fg-dim);
31 font: inherit;
32 font-size: var(--font-control-small);
33 font-weight: 500;
34 text-transform: none;
35 white-space: nowrap;
36 overflow: hidden;
37 text-overflow: ellipsis;
38 cursor: pointer;
39 }
40
41 :root .settings-options > button[data-selected="true"] {
42 background: var(--accent-soft);
43 color: var(--accent);
44 font-weight: 650;
45 }
46
47 :root .settings-options > button:hover:not(:disabled):not([data-selected="true"]) {
48 background: var(--bg-hover, var(--accent-soft));
49 }
50
51 :root .settings-options > button:focus-visible {
52 outline: 2px solid var(--accent);
53 outline-offset: -3px;
54 }
55
56 :root .settings-options > button:disabled {
57 opacity: .5;
58 cursor: not-allowed;
59 }
60
60 lines CSS