Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.40 KB | None | 0 0
  1. /* Make Controls always visible*/
  2. div.azexo.az-container > .controls{display: block!important;right: 0%;left: auto;top: -34px;}
  3.  
  4. /* Make icons bigger*/
  5. .az-element .ax-btn{    font-size: 16px}
  6.  
  7. /* Hide helps text inside elements*/
  8. .az-empty .ax-well{display: none!important}
  9.  
  10. /* Hide some icons: copy, duplicate, paste.... */
  11. .ax-glyphicon-hand-down,.ax-glyphicon-floppy-save, .ax-glyphicon-briefcase,.ax-glyphicon-repeat,.ax-glyphicon-sort,.ax-glyphicon-eye-open,.ax-glyphicon-play-circle {display: none!important;}
  12. /* Show these icons: copy, duplicate, paste.... for administrator user role*/  
  13. .role-administrator .ax-glyphicon-hand-down,.role-administrator .ax-glyphicon-floppy-save,.role-administrator .ax-glyphicon-briefcase,.role-administrator .ax-glyphicon-repeat,.role-administrator .ax-glyphicon-sort,.role-administrator .ax-glyphicon-eye-open,.role-administrator .ax-glyphicon-play-circle {display: inline-block!important;}
  14.  
  15. /* Hide some tabs in the Element List modal window*/
  16. #az-elements-tabs ul li{display: none!important;}
  17. #az-elements-tabs ul li:nth-child(1),#az-elements-tabs ul li:nth-child(2){display: block!important;}
  18.  
  19. /* Show these tabs for administrator user role*/
  20. .role-administrator #az-elements-tabs ul li{display: inline-block!important;}
  21. .role-administrator #az-elements-tabs ul li:nth-child(1),.role-administrator #az-elements-tabs ul li:nth-child(2){display: inline-block!important;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement