You are here

modalframe.parent.css in Modal Frame API 7

Same filename and directory in other branches
  1. 6 css/modalframe.parent.css
/**
 * jQuery UI Dialog classes.
 */
.modalframe {
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #1b5084;
}
.modalframe .ui-dialog-titlebar {
  position: relative;
  cursor: move;
  height: 26px;
  background-color: #336699;
  border: 1px solid #6694c6;
  white-space: nowrap;
}
.modalframe .ui-dialog-title {
  display: block;
  position: absolute;
  top: 0; left: 0;
  margin: 0.2em 0.5em;
  padding: 0;
  color: #d9d9d9;
}
.modalframe .ui-dialog-titlebar-close {
  display: block;
  position: absolute;
  top: 0; right: 0;
  margin: 2px 2px 2px 0.5em;
  padding: 0;
  width: 23px;
  height: 20px;
  background: url(../images/close.gif) no-repeat 0 0;
}
.modalframe .ui-dialog-titlebar a.ui-state-hover,
.modalframe .ui-dialog-titlebar a.ui-state-focus {
  background-position: 0 -20px;
}
.modalframe .ui-dialog-titlebar-close span {
  display: none;
}
.modalframe .ui-dialog-content {
  color: #292929;
  background-color: #f8f8f8;
}

/**
 * ui-dialog overlay.
 */
.ui-widget-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #aaaaaa;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

/**
 * Dialog content.
 */
#modalframe-container {
  margin: 0;
  padding: 0;
  background: url(../images/loading.gif) no-repeat 50% 50%;
  overflow: visible;
}
#modalframe-container.modalframe-loaded {
  background: none;
}
#modalframe-element {
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #1b5084;
}

/**
 * Helpers to enhance the Modal Frame API.
 */
.modalframe-throbber {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: transparent url(../images/throbber.gif) no-repeat 0 0;
}

File

css/modalframe.parent.css
View source
  1. /**
  2. * jQuery UI Dialog classes.
  3. */
  4. .modalframe {
  5. color: #000000;
  6. background-color: #ffffff;
  7. border: 2px solid #1b5084;
  8. }
  9. .modalframe .ui-dialog-titlebar {
  10. position: relative;
  11. cursor: move;
  12. height: 26px;
  13. background-color: #336699;
  14. border: 1px solid #6694c6;
  15. white-space: nowrap;
  16. }
  17. .modalframe .ui-dialog-title {
  18. display: block;
  19. position: absolute;
  20. top: 0; left: 0;
  21. margin: 0.2em 0.5em;
  22. padding: 0;
  23. color: #d9d9d9;
  24. }
  25. .modalframe .ui-dialog-titlebar-close {
  26. display: block;
  27. position: absolute;
  28. top: 0; right: 0;
  29. margin: 2px 2px 2px 0.5em;
  30. padding: 0;
  31. width: 23px;
  32. height: 20px;
  33. background: url(../images/close.gif) no-repeat 0 0;
  34. }
  35. .modalframe .ui-dialog-titlebar a.ui-state-hover,
  36. .modalframe .ui-dialog-titlebar a.ui-state-focus {
  37. background-position: 0 -20px;
  38. }
  39. .modalframe .ui-dialog-titlebar-close span {
  40. display: none;
  41. }
  42. .modalframe .ui-dialog-content {
  43. color: #292929;
  44. background-color: #f8f8f8;
  45. }
  46. /**
  47. * ui-dialog overlay.
  48. */
  49. .ui-widget-overlay {
  50. position: absolute;
  51. top: 0; left: 0;
  52. width: 100%; height: 100%;
  53. background-color: #aaaaaa;
  54. opacity: 0.4;
  55. filter: alpha(opacity=40);
  56. }
  57. /**
  58. * Dialog content.
  59. */
  60. #modalframe-container {
  61. margin: 0;
  62. padding: 0;
  63. background: url(../images/loading.gif) no-repeat 50% 50%;
  64. overflow: visible;
  65. }
  66. #modalframe-container.modalframe-loaded {
  67. background: none;
  68. }
  69. #modalframe-element {
  70. margin: 0;
  71. padding: 0;
  72. border: none;
  73. border-bottom: 1px solid #1b5084;
  74. }
  75. /**
  76. * Helpers to enhance the Modal Frame API.
  77. */
  78. .modalframe-throbber {
  79. display: inline-block;
  80. width: 13px;
  81. height: 13px;
  82. background: transparent url(../images/throbber.gif) no-repeat 0 0;
  83. }