| 1234567891011121314151617181920212223242526 |
- @use '@growi/core/scss/bootstrap/init' as bs;
- // TODO: relocate following styles into PageTreeItem.mdoule.scss after refactoring
- // https://redmine.weseek.co.jp/issues/127544
- @include bs.color-mode(light) {
- .pagetree-item :global {
- .list-group-item-action {
- .btn-page-item-control {
- --bs-btn-bg: transparent;
- --bs-btn-hover-bg: var(--grw-primary-200);
- --bs-btn-active-bg: var(--grw-primary-300);
- }
- }
- }
- }
- @include bs.color-mode(dark) {
- .pagetree-item :global {
- .list-group-item-action {
- .btn-page-item-control {
- --bs-btn-bg: transparent;
- --bs-btn-hover-bg: var(--grw-primary-600);
- --bs-btn-active-bg: var(--grw-primary-700);
- }
- }
- }
- }
|