You are here

popup_onload-colorbox.css in Popup On Load 7

/**
 * Basic colorbox styling, plus custom close button.
 */

#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: visible;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

#cboxClose {
  top: -6px;
  right: -6px;
  background: url("images/new-popup-close-button.png") no-repeat;
  width: 27px;
  height: 27px;
  position: absolute;
  border: 0 none;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0;
}

File

popup_onload-colorbox.css
View source
  1. /**
  2. * Basic colorbox styling, plus custom close button.
  3. */
  4. #colorbox,
  5. #cboxOverlay,
  6. #cboxWrapper {
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. z-index: 9999;
  11. overflow: visible;
  12. }
  13. #cboxOverlay {
  14. position: fixed;
  15. width: 100%;
  16. height: 100%;
  17. }
  18. #cboxMiddleLeft,
  19. #cboxBottomLeft {
  20. clear: left;
  21. }
  22. #cboxContent {
  23. position: relative;
  24. }
  25. #cboxLoadedContent {
  26. overflow: auto;
  27. }
  28. #cboxTitle {
  29. margin: 0;
  30. }
  31. #cboxLoadingOverlay,
  32. #cboxLoadingGraphic {
  33. position: absolute;
  34. top: 0;
  35. left: 0;
  36. width: 100%;
  37. height: 100%;
  38. }
  39. #cboxPrevious,
  40. #cboxNext,
  41. #cboxClose,
  42. #cboxSlideshow {
  43. cursor: pointer;
  44. }
  45. #cboxClose {
  46. top: -6px;
  47. right: -6px;
  48. background: url("images/new-popup-close-button.png") no-repeat;
  49. width: 27px;
  50. height: 27px;
  51. position: absolute;
  52. border: 0 none;
  53. -moz-box-sizing: content-box;
  54. -webkit-box-sizing: content-box;
  55. box-sizing: content-box;
  56. padding: 0;
  57. }