Guest User

Untitled

a guest
Apr 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. .ui-widget-overlay {
  2. background: #AAA url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  3. opacity: .30;
  4. filter: Alpha(Opacity=30);
  5. }
  6.  
  7. .ui-widget-overlay
  8. {
  9. opacity: .50 !important; /* Make sure to change both of these, as IE only sees the second one */
  10. filter: Alpha(Opacity=50) !important;
  11.  
  12. background: rgb(50, 50, 50) !important; /* This will make it darker */
  13. }
  14.  
  15. open : function(event, ui){
  16. $("body").css({
  17. overflow: 'hidden'
  18. });
  19. $(".ui-widget-overlay").css({
  20. background:"rgb(0, 0, 0)",
  21. opacity: ".50 !important",
  22. filter: "Alpha(Opacity=50)",
  23. });
  24. },
  25. beforeClose: function(event, ui) {
  26. $("body").css({ overflow: 'inherit' })
  27. }
Add Comment
Please, Sign In to add comment