TableWithEditButton.module.scss 545 B

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