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.

61 lines
1.0 KiB

  1. /*
  2. * metismenu - v1.1.3
  3. * Easy menu jQuery plugin for Twitter Bootstrap 3
  4. * https://github.com/onokumus/metisMenu
  5. *
  6. * Made by Osman Nuri Okumus
  7. * Under MIT License
  8. */
  9. .arrow {
  10. float: right;
  11. line-height: 1.42857;
  12. }
  13. .glyphicon.arrow:before {
  14. content: "\e079";
  15. }
  16. .active > a > .glyphicon.arrow:before {
  17. content: "\e114";
  18. }
  19. /*
  20. * Require Font-Awesome
  21. * http://fortawesome.github.io/Font-Awesome/
  22. */
  23. .fa.arrow:before {
  24. content: "\f104";
  25. }
  26. .active > a > .fa.arrow:before {
  27. content: "\f107";
  28. }
  29. .plus-times {
  30. float: right;
  31. }
  32. .fa.plus-times:before {
  33. content: "\f067";
  34. }
  35. .active > a > .fa.plus-times {
  36. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  37. -webkit-transform: rotate(45deg);
  38. -moz-transform: rotate(45deg);
  39. -ms-transform: rotate(45deg);
  40. -o-transform: rotate(45deg);
  41. transform: rotate(45deg);
  42. }
  43. .plus-minus {
  44. float: right;
  45. }
  46. .fa.plus-minus:before {
  47. content: "\f067";
  48. }
  49. .active > a > .fa.plus-minus:before {
  50. content: "\f068";
  51. }