_page.scss 767 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // // import diff2html styles
  2. // @import '~/diff2html/bundles/css/diff2html.min.css';
  3. /**
  4. * for table with handsontable modal button
  5. */
  6. .editable-with-handsontable {
  7. position: relative;
  8. .handsontable-modal-trigger {
  9. position: absolute;
  10. top: 11px;
  11. right: 10px;
  12. padding: 0;
  13. font-size: 16px;
  14. line-height: 1;
  15. vertical-align: bottom;
  16. background-color: transparent;
  17. border: none;
  18. opacity: 0;
  19. }
  20. .page-mobile & .handsontable-modal-trigger {
  21. opacity: 0.3;
  22. }
  23. &:hover .handsontable-modal-trigger {
  24. opacity: 1;
  25. }
  26. }
  27. /**
  28. * for drawio with drawio iframe button
  29. */
  30. .editable-with-drawio {
  31. .drawio-iframe-trigger {
  32. top: 11px;
  33. right: 10px;
  34. z-index: 14;
  35. font-size: 12px;
  36. line-height: 1;
  37. }
  38. }