Editor.module.scss 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @use '~/styles/mixins' as ms;
  2. @use '@growi/core/scss/bootstrap/init' as bs;
  3. @use './page-editor-inheritance';
  4. .editor-container :global {
  5. .btn.btn-open-dropzone {
  6. z-index: 2;
  7. padding-top: 3px;
  8. padding-bottom: 3px;
  9. font-size: small;
  10. border: none;
  11. border-top: 1px dotted bs.$gray-300;
  12. border-bottom: none;
  13. &:hover,
  14. &:focus {
  15. border-bottom: none;
  16. }
  17. }
  18. // for Navbar editor
  19. .navbar-editor {
  20. height: page-editor-inheritance.$navbar-editor-height;
  21. padding: 0;
  22. border-bottom: 1px solid transparent;
  23. li {
  24. display: inline-block;
  25. i {
  26. font-size: 16px;
  27. }
  28. }
  29. button {
  30. padding: 0px;
  31. margin: 0 2px;
  32. font-size: 1rem;
  33. line-height: 1;
  34. background-color: transparent;
  35. border: none;
  36. }
  37. img {
  38. vertical-align: bottom;
  39. }
  40. }
  41. }