|
11 | 11 | gap: 0.5rem; |
12 | 12 | } |
13 | 13 |
|
| 14 | +.bn-ak-input-wrapper svg { |
| 15 | + width: 24px; |
| 16 | +} |
| 17 | + |
14 | 18 | .bn-ak-toolbar { |
15 | 19 | height: fit-content; |
16 | 20 | overflow: scroll; |
|
68 | 72 | overflow: visible; |
69 | 73 | } |
70 | 74 |
|
71 | | -.bn-ariakit .bn-suggestion-menu { |
| 75 | +.bn-ariakit .bn-suggestion-menu, |
| 76 | +.bn-ariakit .ai-suggestion-menu { |
72 | 77 | height: fit-content; |
73 | 78 | max-height: inherit; |
| 79 | + overflow: auto; |
74 | 80 | } |
75 | 81 |
|
76 | 82 | .bn-ariakit .bn-color-picker-dropdown { |
|
120 | 126 | padding-inline: 4px; |
121 | 127 | } |
122 | 128 |
|
| 129 | +@keyframes spin { |
| 130 | + 0% { |
| 131 | + transform: rotate(0deg); |
| 132 | + } |
| 133 | + 100% { |
| 134 | + transform: rotate(360deg); |
| 135 | + } |
| 136 | +} |
| 137 | + |
| 138 | +.bn-ariakit .bn-suggestion-menu-loader { |
| 139 | + align-items: center; |
| 140 | + animation: spin 1s linear infinite; |
| 141 | + display: flex; |
| 142 | + height: 16px; |
| 143 | + justify-content: center; |
| 144 | + width: 16px; |
| 145 | +} |
| 146 | + |
123 | 147 | .bn-ariakit .bn-grid-suggestion-menu { |
124 | 148 | background: var(--bn-colors-menu-background); |
125 | 149 | border-radius: var(--bn-border-radius-large); |
|
326 | 350 | padding: 0; |
327 | 351 | } |
328 | 352 |
|
| 353 | +.bn-ariakit .bn-combobox .bn-ak-input-wrapper { |
| 354 | + display: flex; |
| 355 | + border-radius: 0.5rem; |
| 356 | + border-width: 1px; |
| 357 | + border-style: solid; |
| 358 | + border-color: hsl(204 20% 88%); |
| 359 | + background-color: hsl(204 20% 100%); |
| 360 | + padding: 0.5rem; |
| 361 | + color: hsl(204 4% 0%); |
| 362 | + box-shadow: |
| 363 | + 0 10px 15px -3px rgb(0 0 0 / 0.1), |
| 364 | + 0 4px 6px -4px rgb(0 0 0 / 0.1); |
| 365 | +} |
| 366 | + |
| 367 | +.bn-ariakit .bn-combobox .bn-ak-input-wrapper:where(.dark, .dark *) { |
| 368 | + border-color: hsl(204 4% 24%); |
| 369 | + background-color: hsl(204 4% 16%); |
| 370 | + color: hsl(204 20% 100%); |
| 371 | + box-shadow: |
| 372 | + 0 10px 15px -3px rgb(0 0 0 / 0.25), |
| 373 | + 0 4px 6px -4px rgb(0 0 0 / 0.1); |
| 374 | +} |
| 375 | + |
| 376 | +.bn-ariakit .bn-combobox .bn-ak-input { |
| 377 | + background: transparent; |
| 378 | + border: none; |
| 379 | + box-shadow: none; |
| 380 | + outline: none; |
| 381 | +} |
| 382 | + |
| 383 | +.bn-ariakit .bn-combobox .bn-combobox-icon, |
| 384 | +.bn-ariakit .bn-combobox .bn-combobox-right-section { |
| 385 | + align-items: start; |
| 386 | + display: flex; |
| 387 | + justify-content: center; |
| 388 | + width: 24px; |
| 389 | +} |
| 390 | + |
| 391 | +.bn-ariakit .bn-combobox .bn-combobox-error { |
| 392 | + color: var(--bn-colors-highlights-red-background); |
| 393 | +} |
| 394 | + |
329 | 395 | .bn-ariakit .bn-comment-actions-wrapper { |
330 | 396 | align-items: start; |
331 | 397 | display: flex; |
|
0 commit comments