_bootstrap.scss 785 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Disable smooth scrolling for intra-page links
  2. html {
  3. scroll-behavior: auto !important;
  4. }
  5. // Prevent dropdown menus from being clipped inside responsive tables
  6. .table-responsive {
  7. .dropdown, .btn-group, .btn-group-vertical {
  8. position: static;
  9. }
  10. }
  11. // Enforce a minimum width for progress bars
  12. .progress {
  13. min-width: 80px;
  14. }
  15. // Reduce vertical margin around dropdown menu divider
  16. hr.dropdown-divider {
  17. margin-bottom: 0.25rem;
  18. margin-top: 0.25rem;
  19. }
  20. // Bootstrap forces the font weight for dropdown items to $font-weight-normal
  21. .dropdown-item {
  22. font-weight: $font-weight-base;
  23. }
  24. // Restore support for old Bootstrap v3 colors
  25. .text-bg-black {
  26. @extend .text-bg-dark;
  27. }
  28. .text-bg-gray {
  29. @extend .text-bg-secondary;
  30. }
  31. .text-bg-white {
  32. @extend .text-bg-light;
  33. }