Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <uib-accordion close-others="oneAtATime ">
  2. <div ng-repeat="menuElement in vm.menuElements" class ="parent-container" ng-init="parentIndex = $index">
  3. <div uib-accordion-group is-disabled="false">
  4. <uib-accordion-heading>
  5. <div class="parent">
  6. <i class="{{menuElement.iconClass}}"></i>
  7. <a>{{menuElement.menu}}</a>
  8. <i class="go-right {{menuElement.iconClass}}"></i>
  9. </div>
  10. </uib-accordion-heading>
  11. </div>
  12. </div>
  13.  
  14. .parent-container
  15. .panel
  16. background-color: transparent
  17. border: none
  18.  
  19. .panel-heading
  20. background-color: transparent
  21. padding-left: 0px
  22. height: 35px
  23.  
  24. .panel-title
  25. width: 100%
  26.  
  27. .parent
  28. align-items: center
  29. display: flex
  30. width: 100%
  31.  
  32. i
  33. font-size: 2.2em
  34. a
  35. font-size: 14px
  36.  
  37. .go-right
  38. position: absolute
  39. right: 0px
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement