BookmarkButtons.module.scss 530 B

1234567891011121314151617181920212223242526
  1. @use '@growi/core-styles/scss/bootstrap/init' as bs;
  2. @use '@growi/ui/scss/atoms/btn-muted';
  3. @use './button-styles';
  4. .btn-group-bookmark {
  5. :global(.btn-bookmark) {
  6. @extend %btn-basis;
  7. }
  8. :global(.dropdown .btn-bookmark) {
  9. padding-right: 1px;
  10. }
  11. :global(.total-counts) {
  12. @extend %btn-total-counts-basis;
  13. padding-left: 5px;
  14. }
  15. }
  16. // == Colors
  17. .btn-group-bookmark {
  18. /* stylelint-disable-next-line no-descending-specificity */
  19. :global(.btn-bookmark) {
  20. @include btn-muted.colorize(bs.$orange);
  21. }
  22. }