Advertisement
tjromano

spry-style.css

Jan 31st, 2013
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. @charset "UTF-8";
  2.  
  3. /* SpryTooltip.css - version 0.2 - Spry Pre-Release 1.6.1 */
  4.  
  5. /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
  6.  
  7. /* HACK FOR IE: to make sure the tooltips show above form controls, we underlay each tooltip with an iframe */
  8. .iframeTooltip
  9. {
  10. position: absolute;
  11. z-index: 1010;
  12. filter:alpha(opacity:0.1);
  13. }
  14.  
  15. .tooltipContent
  16. {
  17. background-color: #FFFFCC;
  18. border-top-background: url("../Images/tip-t.png") repeat-x scroll 0 0 transparent;
  19. border-right-image:url("../Images/tip-r.png") repeat-y scroll right center transparent;
  20. border-bottom-image:url("../Images/tip-b.png") repeat-x scroll 0 0 transparent;
  21. border-left-image:url("../Images/tip-l.png") repeat-y scroll 0 0 transparent;
  22. border-top-left-image: url("../Images/tip-tl.png") no-repeat scroll 0 0 transparent;
  23. border-top-right-image:url("../Images/tip-tr.png") no-repeat scroll 0 0 transparent;
  24. border-bottom-left-image:url("../Images/tip-bl.png") no-repeat scroll 0 0 transparent;
  25. border-bottom-right-image:url("../Images/tip-br.png") no-repeat scroll 0 0 transparent;
  26. border-bottom-center-image:url("../Images/tip-point.png") no-repeat scroll 0 0 transparent;
  27. padding: 10;
  28. height: auto;
  29. width: 350px;
  30. color: #333;
  31. position: absolute;
  32. margin: 10px;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement