| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @use '@growi/core-styles/scss/bootstrap/init' as bs;
- // fix height
- .page-tree-item :global {
- li {
- min-height: 40px;
- }
- }
- // font size
- .page-tree-item :global {
- font-size: 14px;
- }
- // == Colors
- // drag over
- .page-tree-item :global {
- .drag-over {
- background-color: var(--bs-list-group-action-active-bg);
- }
- }
- @include bs.color-mode(light) {
- // button
- .page-tree-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) {
- // button
- .page-tree-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);
- }
- }
- }
- }
|