2
0

TableWithEditButton.module.scss 460 B

12345678910111213141516171819202122232425
  1. /**
  2. * for table with handsontable modal button
  3. */
  4. .editable-with-handsontable :global {
  5. position: relative;
  6. .handsontable-modal-trigger {
  7. position: absolute;
  8. top: 11px;
  9. right: 10px;
  10. padding: 0;
  11. font-size: 16px;
  12. line-height: 1;
  13. vertical-align: bottom;
  14. background-color: transparent;
  15. border: none;
  16. opacity: 0;
  17. }
  18. }
  19. .editable-with-handsontable:hover :global {
  20. .handsontable-modal-trigger {
  21. opacity: 1;
  22. }
  23. }