PageTreeItem.module.scss 614 B

1234567891011121314151617181920212223242526
  1. @use '@growi/core/scss/bootstrap/init' as bs;
  2. // == Colors
  3. @include bs.color-mode(light) {
  4. .pagetree-item :global {
  5. .list-group-item-action {
  6. .btn-page-item-control {
  7. --bs-btn-bg: transparent;
  8. --bs-btn-hover-bg: var(--grw-primary-200);
  9. --bs-btn-active-bg: var(--grw-primary-300);
  10. }
  11. }
  12. }
  13. }
  14. @include bs.color-mode(dark) {
  15. .pagetree-item :global {
  16. .list-group-item-action {
  17. .btn-page-item-control {
  18. --bs-btn-bg: transparent;
  19. --bs-btn-hover-bg: var(--grw-primary-600);
  20. --bs-btn-active-bg: var(--grw-primary-700);
  21. }
  22. }
  23. }
  24. }