Нема описа
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.

_dropdown.scss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .navbar-nav .dropdown-menu {
  2. box-shadow: $box-shadow;
  3. }
  4. .dropdown .dropdown-menu.show {
  5. animation-name: dropdownAnimation;
  6. animation-duration: .25s;
  7. animation-iteration-count: 1;
  8. animation-timing-function: ease;
  9. animation-fill-mode: forwards;
  10. }
  11. @keyframes dropdownAnimation {
  12. from {
  13. opacity: 0;
  14. transform: translateY(-8px);
  15. }
  16. to {
  17. opacity: 1;
  18. transform: translate(0);
  19. }
  20. }
  21. .dropdown-toggle:after {
  22. border: solid;
  23. border-width: 0 2px 2px 0;
  24. display: inline-block;
  25. padding: 2px;
  26. transform: rotate(45deg);
  27. }
  28. .dropdown-item {
  29. transition: $transition-appearance-fast;
  30. }
  31. .dropdown-menu {
  32. top: auto;
  33. }
  34. .dropdown-menu-lg {
  35. min-width: $dropdown-min-width*2;
  36. }
  37. .dropdown .list-group .list-group-item {
  38. border-width: 0;
  39. border-bottom-width: 1px;
  40. margin-bottom: 0;
  41. &:first-child,
  42. &:last-child {
  43. border-radius: 0;
  44. }
  45. &:hover {
  46. background: $gray-100;
  47. }
  48. }
  49. .dropdown-menu-header {
  50. padding: $spacer*0.75;
  51. text-align: center;
  52. font-weight: $font-weight-bold;
  53. border-bottom: 1px solid $gray-300;
  54. }
  55. .dropdown-menu-footer {
  56. padding: $spacer*0.5;
  57. text-align: center;
  58. display: block;
  59. font-size: $font-size-sm;
  60. }