_handsontable.scss 831 B

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