colorbox.css 4.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. ColorBox Core Style:
  3. The following CSS is consistent between example themes and should not be altered.
  4. */
  5. #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
  6. #cboxOverlay{position:fixed; width:100%; height:100%;}
  7. #cboxMiddleLeft, #cboxBottomLeft{clear:left;}
  8. #cboxContent{position:relative;}
  9. #cboxLoadedContent{overflow:auto;}
  10. #cboxTitle{margin:0;}
  11. #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
  12. #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
  13. .cboxPhoto{float:left; margin:auto; border:0; display:block;}
  14. .cboxIframe{width:100%; height:100%; display:block; border:0;}
  15. /*
  16. User Style:
  17. Change the following styles to modify the appearance of ColorBox. They are
  18. ordered & tabbed in a way that represents the nesting of the generated HTML.
  19. */
  20. #cboxOverlay{background:url(images/overlay.png) repeat 0 0;}
  21. #colorbox{}
  22. #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px 0;}
  23. #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px 0;}
  24. #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px -29px;}
  25. #cboxBottomRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px -29px;}
  26. #cboxMiddleLeft{width:21px; background:url(images/controls.png) left top repeat-y;}
  27. #cboxMiddleRight{width:21px; background:url(images/controls.png) right top repeat-y;}
  28. #cboxTopCenter{height:21px; background:url(images/border.png) 0 0 repeat-x;}
  29. #cboxBottomCenter{height:21px; background:url(images/border.png) 0 -29px repeat-x;}
  30. #cboxContent{background:#fff; overflow:hidden;}
  31. .cboxIframe{background:#fff;}
  32. #cboxError{padding:50px; border:1px solid #ccc;}
  33. #cboxLoadedContent{margin-bottom:28px;}
  34. #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
  35. #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
  36. #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
  37. #cboxPrevious{position:absolute; bottom:0; left:0; background:url(images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
  38. #cboxPrevious:hover{background-position:-75px -25px;}
  39. #cboxNext{position:absolute; bottom:0; left:27px; background:url(images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
  40. #cboxNext:hover{background-position:-50px -25px;}
  41. #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
  42. #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}
  43. #cboxClose{position:absolute; bottom:0; right:0; background:url(images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
  44. #cboxClose:hover{background-position:-25px -25px;}
  45. /*
  46. The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  47. when an alpha filter (opacity change) is set on the element or ancestor element. This style is not applied to or needed in IE9.
  48. See: http://jacklmoore.com/notes/ie-transparency-problems/
  49. */
  50. .cboxIE #cboxTopLeft,
  51. .cboxIE #cboxTopCenter,
  52. .cboxIE #cboxTopRight,
  53. .cboxIE #cboxBottomLeft,
  54. .cboxIE #cboxBottomCenter,
  55. .cboxIE #cboxBottomRight,
  56. .cboxIE #cboxMiddleLeft,
  57. .cboxIE #cboxMiddleRight {
  58. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
  59. }
  60. /*
  61. The following provides PNG transparency support for IE6
  62. Feel free to remove this and the /ie6/ directory if you have dropped IE6 support.
  63. */
  64. .cboxIE6 #cboxTopLeft{background:url(images/ie6/borderTopLeft.png);}
  65. .cboxIE6 #cboxTopCenter{background:url(images/ie6/borderTopCenter.png);}
  66. .cboxIE6 #cboxTopRight{background:url(images/ie6/borderTopRight.png);}
  67. .cboxIE6 #cboxBottomLeft{background:url(images/ie6/borderBottomLeft.png);}
  68. .cboxIE6 #cboxBottomCenter{background:url(images/ie6/borderBottomCenter.png);}
  69. .cboxIE6 #cboxBottomRight{background:url(images/ie6/borderBottomRight.png);}
  70. .cboxIE6 #cboxMiddleLeft{background:url(images/ie6/borderMiddleLeft.png);}
  71. .cboxIE6 #cboxMiddleRight{background:url(images/ie6/borderMiddleRight.png);}
  72. .cboxIE6 #cboxTopLeft,
  73. .cboxIE6 #cboxTopCenter,
  74. .cboxIE6 #cboxTopRight,
  75. .cboxIE6 #cboxBottomLeft,
  76. .cboxIE6 #cboxBottomCenter,
  77. .cboxIE6 #cboxBottomRight,
  78. .cboxIE6 #cboxMiddleLeft,
  79. .cboxIE6 #cboxMiddleRight {
  80. _behavior: expression(this.src = this.src ? this.src : this.currentStyle.backgroundImage.split('"')[1], this.style.background = "none", this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" + this.src + ", sizingMethod='scale')");
  81. }