editor.css28 lines · main
| 1 | @reference "./globals.css"; |
| 2 | |
| 3 | .table-editor-columns .sbui-formlayout--responsive { |
| 4 | gap: 0rem !important; |
| 5 | } |
| 6 | |
| 7 | .table-editor-column-type .sbui-listbox-option-container { |
| 8 | width: 400px; |
| 9 | } |
| 10 | |
| 11 | .table-editor-column-type .sbui-listbox { |
| 12 | @apply px-2; |
| 13 | } |
| 14 | |
| 15 | .column-type-disabled { |
| 16 | @apply pointer-events-none; |
| 17 | } |
| 18 | |
| 19 | .column-type-disabled .sbui-listbox-label { |
| 20 | @apply opacity-50; |
| 21 | } |
| 22 | |
| 23 | /* This fix should ideally be in the UI library */ |
| 24 | .table-editor-search { |
| 25 | input { |
| 26 | @apply pr-10; |
| 27 | } |
| 28 | } |