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.

47 lines
931 B

4 years ago
  1. .dropdown-submenu {
  2. position: relative;
  3. }
  4. .dropdown-submenu>.dropdown-menu {
  5. top: 0;
  6. left: 100%;
  7. margin-top: -6px;
  8. margin-left: -1px;
  9. -webkit-border-radius: 0 6px 6px 6px;
  10. -moz-border-radius: 0 6px 6px;
  11. border-radius: 0 6px 6px 6px;
  12. }
  13. .dropdown-submenu:hover>.dropdown-menu {
  14. display: block;
  15. }
  16. .dropdown-submenu>a:after {
  17. display: block;
  18. content: " ";
  19. float: right;
  20. width: 0;
  21. height: 0;
  22. border-color: transparent;
  23. border-style: solid;
  24. border-width: 5px 0 5px 5px;
  25. border-left-color: #ccc;
  26. margin-top: 5px;
  27. margin-right: -10px;
  28. }
  29. .dropdown-submenu:hover>a:after {
  30. border-left-color: #fff;
  31. }
  32. .dropdown-submenu.pull-left {
  33. float: none;
  34. }
  35. .dropdown-submenu.pull-left>.dropdown-menu {
  36. left: -100%;
  37. margin-left: 10px;
  38. -webkit-border-radius: 6px 0 6px 6px;
  39. -moz-border-radius: 6px 0 6px 6px;
  40. border-radius: 6px 0 6px 6px;
  41. }