editor.css 480 B

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