2
0

_handsontable.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. .modal-navbar {
  22. background-color: $navbar-default-bg;
  23. border-bottom: $border 1px solid;
  24. }
  25. .data-import-form {
  26. color: $headingtext;
  27. background-color: $navbar-default-bg;
  28. .btn + .btn {
  29. margin-left: 5px;
  30. }
  31. }
  32. .data-import-button {
  33. position: relative;
  34. padding-right: 35px;
  35. padding-left: 10px;
  36. i:before {
  37. position: absolute;
  38. top: 6px;
  39. right: 8px;
  40. font-size: 20px;
  41. }
  42. }
  43. }