highslide-ie6.css 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .closebutton {
  2. /* NOTE! This URL is relative to the HTML page, not the CSS */
  3. filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
  4. src='../highslide/graphics/close.png', sizingMethod='scale');
  5. background: none;
  6. cursor: hand;
  7. }
  8. /* Viewport fixed hack */
  9. .highslide-viewport {
  10. position: absolute;
  11. left: expression( ( ( ignoreMe1 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
  12. top: expression( ( ignoreMe2 = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) + 'px' );
  13. width: expression( ( ( ignoreMe3 = document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) ) + 'px' );
  14. height: expression( ( ( ignoreMe4 = document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) ) + 'px' );
  15. }
  16. /* Thumbstrip PNG fix */
  17. .highslide-scroll-down, .highslide-scroll-up {
  18. position: relative;
  19. overflow: hidden;
  20. }
  21. .highslide-scroll-down div, .highslide-scroll-up div {
  22. /* NOTE! This URL is relative to the HTML page, not the CSS */
  23. filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(
  24. src='../highslide/graphics/scrollarrows.png', sizingMethod='scale');
  25. background: none !important;
  26. position: absolute;
  27. cursor: hand;
  28. width: 75px;
  29. height: 75px !important;
  30. }
  31. .highslide-thumbstrip-horizontal .highslide-scroll-down div {
  32. left: -50px;
  33. top: -15px;
  34. }
  35. .highslide-thumbstrip-horizontal .highslide-scroll-up div {
  36. top: -15px;
  37. }
  38. .highslide-thumbstrip-vertical .highslide-scroll-down div {
  39. top: -50px;
  40. }
  41. /* Thumbstrip marker arrow trasparent background fix */
  42. .highslide-thumbstrip .highslide-marker {
  43. border-color: white; /* match the background */
  44. }
  45. .dark .highslide-thumbstrip-horizontal .highslide-marker {
  46. border-color: #111;
  47. }
  48. .highslide-viewport .highslide-marker {
  49. border-color: #333;
  50. }
  51. .highslide-thumbstrip {
  52. float: left;
  53. }
  54. /* Positioning fixes for the control bar */
  55. .text-controls .highslide-controls {
  56. width: 480px;
  57. }
  58. .text-controls a span {
  59. width: 4em;
  60. }
  61. .text-controls .highslide-full-expand a span {
  62. width: 0;
  63. }
  64. .text-controls .highslide-close a span {
  65. width: 0;
  66. }
  67. /* Special */
  68. .in-page .highslide-thumbstrip-horizontal .highslide-marker {
  69. border-bottom: gray;
  70. }