_alert.scss 299 B

123456789101112131415161718
  1. @each $state, $value in $theme-gradient-colors {
  2. .alert-#{$state} {
  3. @include gradient-directional(nth($value, 1) 0%, darken(nth($value, -1), 8%) 100%, $deg: 310deg);
  4. }
  5. }
  6. .btn-close{
  7. &:focus{
  8. box-shadow: none;
  9. }
  10. }
  11. .alert-dismissible{
  12. .btn-close{
  13. background-image: none;
  14. }
  15. }