No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_close.scss 669B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // Close
  3. //
  4. .close {
  5. @if $enable-transitions {
  6. transition: $transition-base;
  7. }
  8. &>span:not(.sr-only) {
  9. background-color: $close-bg;
  10. color: $close-color;
  11. line-height: 17px;
  12. height: 1.25rem;
  13. width: 1.25rem;
  14. border-radius: 50%;
  15. font-size: 1.25rem;
  16. display: block;
  17. @if $enable-transitions {
  18. transition: $transition-base;
  19. }
  20. }
  21. &:hover,
  22. &:focus {
  23. background-color: $close-hover-bg;
  24. color: $close-hover-color;
  25. outline: none;
  26. span:not(.sr-only) {
  27. background-color: $close-hover-bg;
  28. }
  29. }
  30. }