|
7 | 7 | @theme inline { |
8 | 8 | --color-background: var(--background); |
9 | 9 | --color-foreground: var(--foreground); |
10 | | - --font-sans: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif; |
11 | | - --font-mono: var(--font-geist-mono); |
12 | | - --font-heading: var(--font-display), var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif; |
| 10 | + --font-sans: var(--font-system); |
| 11 | + --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; |
| 12 | + --font-heading: var(--font-system); |
13 | 13 | --color-sidebar-ring: var(--sidebar-ring); |
14 | 14 | --color-sidebar-border: var(--sidebar-border); |
15 | 15 | --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); |
|
142 | 142 | } |
143 | 143 | body { |
144 | 144 | background: var(--color-page); |
| 145 | + font-family: var(--font-system); |
| 146 | + font-size: var(--welcome-text-size); |
| 147 | + letter-spacing: var(--welcome-letter-spacing); |
145 | 148 | @apply text-foreground; |
146 | 149 | } |
147 | 150 | html { |
148 | | - @apply font-sans; |
| 151 | + font-family: var(--font-system); |
149 | 152 | } |
150 | 153 | } |
151 | 154 |
|
|
1176 | 1179 | cursor: not-allowed; |
1177 | 1180 | } |
1178 | 1181 |
|
| 1182 | + .element-chat-popup-prompt-readonly { |
| 1183 | + flex: 1; |
| 1184 | + min-width: 0; |
| 1185 | + margin: 0; |
| 1186 | + font-family: inherit; |
| 1187 | + font-size: 13px; |
| 1188 | + line-height: 1.45; |
| 1189 | + letter-spacing: -0.01em; |
| 1190 | + color: rgba(17, 17, 17, 0.88); |
| 1191 | + } |
| 1192 | + |
| 1193 | + .element-chat-popup-locked-hint { |
| 1194 | + font-family: inherit; |
| 1195 | + font-size: 12px; |
| 1196 | + color: rgba(17, 17, 17, 0.45); |
| 1197 | + } |
| 1198 | + |
| 1199 | + .element-chat-popup-toolbar-spacer { |
| 1200 | + width: 26px; |
| 1201 | + } |
| 1202 | + |
| 1203 | + .element-chat-popup-view-preview { |
| 1204 | + height: 28px; |
| 1205 | + padding: 0 12px; |
| 1206 | + border: none; |
| 1207 | + border-radius: 999px; |
| 1208 | + background: #2f6feb; |
| 1209 | + color: #ffffff; |
| 1210 | + font-family: inherit; |
| 1211 | + font-size: 12px; |
| 1212 | + font-weight: 600; |
| 1213 | + cursor: pointer; |
| 1214 | + } |
| 1215 | + |
| 1216 | + .element-chat-popup-view-preview:hover { |
| 1217 | + background: #255fd4; |
| 1218 | + } |
| 1219 | + |
1179 | 1220 | .element-chat-popup-toolbar { |
1180 | 1221 | display: grid; |
1181 | 1222 | grid-template-columns: auto 1fr auto; |
|
0 commit comments