_handsontable.scss 747 B

1234567891011121314151617181920212223242526272829303132333435
  1. .handsontable {
  2. .handsontableInput {
  3. max-width: 290px !important;
  4. }
  5. td {
  6. word-break: break-all;
  7. }
  8. }
  9. .handsontable-modal.grw-modal-expanded {
  10. // expand .hot-table-container (with flexbox)
  11. .hot-table-container {
  12. flex: 1;
  13. }
  14. }
  15. // Prevent handsontable/handsontable #2937 (Manual column resize does not work when handsontable is loaded inside Bootstrap 3.0 Modal)
  16. // see https://github.com/handsontable/handsontable/issues/2937#issuecomment-287390111
  17. .modal.in .modal-dialog.handsontable-modal {
  18. transform: none;
  19. .data-import-button {
  20. position: relative;
  21. padding-right: 35px;
  22. padding-left: 10px;
  23. i:before {
  24. position: absolute;
  25. top: 6px;
  26. right: 8px;
  27. font-size: 20px;
  28. }
  29. }
  30. }