_bootstrap-overrides.scss 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. legend {
  2. font-weight: $font-weight-bold;
  3. }
  4. a,
  5. a:hover {
  6. color: inherit;
  7. }
  8. .dropdown-menu {
  9. border: $line;
  10. padding: 0;
  11. margin-left: -#{$header-spacer-sm};
  12. margin-top: 10px;
  13. .dropdown-item {
  14. font-size: $font-size-sm;
  15. padding: .25rem 1.25rem .25rem .5rem;
  16. }
  17. @include media-breakpoint-up($layout-bp) {
  18. margin-left: -#{$header-spacer};
  19. .dropdown-item {
  20. font-size: $font-size-base;
  21. }
  22. }
  23. }
  24. .popover {
  25. font-family: $font-family-text;
  26. .arrow {
  27. visibility: hidden;
  28. }
  29. &-body {
  30. color: inherit;
  31. }
  32. }
  33. .btn {
  34. font-family: $font-family-base;
  35. }
  36. .badge {
  37. font-size: inherit;
  38. }
  39. @each $color, $value in $theme-colors {
  40. @if $color == 'depart' {
  41. @include text-emphasis-variant(".text-#{$color}", $black, true);
  42. } @else {
  43. @include text-emphasis-variant(".text-#{$color}", darken($value, 15%), true);
  44. }
  45. }