You are here

modal.css in Chaos Tool Suite (ctools) 6

Same filename and directory in other branches
  1. 7 css/modal.css
div.ctools-modal-content {
  background: #fff;
  color: #000;
  padding: 0;
  margin: 2px;
  border: 1px solid #000;
  width: 600px;
  text-align: left;
}

div.ctools-modal-content .modal-title {
  font-size: 120%;
  font-weight: bold;
  color: white;
  overflow: hidden;
  white-space: nowrap;
}

div.ctools-modal-content .modal-header {
  background-color: #2385c2;
  padding: 0 .25em 0 1em;
}

div.ctools-modal-content .modal-header a {
  color: white;
  float: right;
}

div.ctools-modal-content .modal-content {
  padding: 1em 1em 0 1em;
  overflow: auto;
  position: relative; /* Keeps IE7 from flowing outside the modal. */
}

div.ctools-modal-content .modal-form {
}

div.ctools-modal-content a.close {
  color: white;
}

div.ctools-modal-content a.close:hover {
  text-decoration: none;
}

div.ctools-modal-content a.close img {
  position: relative;
  top: 1px;
}

div.ctools-modal-content .modal-content .modal-throbber-wrapper {
  text-align: center;
}

div.ctools-modal-content .modal-content .modal-throbber-wrapper img {
  margin-top: 160px;
}

/** modal forms CSS **/
div.ctools-modal-content .form-item label {
  width: 15em;
  float: left;
}

div.ctools-modal-content .form-item label.option {
  width: auto;
  float: none;
}

div.ctools-modal-content .form-item .description {
  clear: left;
}

div.ctools-modal-content .form-item .description .tips {
  margin-left: 2em;
}

div.ctools-modal-content .no-float .form-item * {
  float: none;
}

div.ctools-modal-content .modal-form .no-float label  {
  width: auto;
}

div.ctools-modal-content fieldset,
div.ctools-modal-content .form-radios,
div.ctools-modal-content .form-checkboxes {
  clear: left;
}

div.ctools-modal-content .resizable-textarea {
  width: auto;
  margin-left: 15em;
  margin-right: 5em;
}

div.ctools-modal-content .container-inline .form-item {
  margin-right: 2em;
}

#views-exposed-pane-wrapper .form-item {
  margin-top: 0;
  margin-bottom: 0;
}

File

css/modal.css
View source
  1. div.ctools-modal-content {
  2. background: #fff;
  3. color: #000;
  4. padding: 0;
  5. margin: 2px;
  6. border: 1px solid #000;
  7. width: 600px;
  8. text-align: left;
  9. }
  10. div.ctools-modal-content .modal-title {
  11. font-size: 120%;
  12. font-weight: bold;
  13. color: white;
  14. overflow: hidden;
  15. white-space: nowrap;
  16. }
  17. div.ctools-modal-content .modal-header {
  18. background-color: #2385c2;
  19. padding: 0 .25em 0 1em;
  20. }
  21. div.ctools-modal-content .modal-header a {
  22. color: white;
  23. float: right;
  24. }
  25. div.ctools-modal-content .modal-content {
  26. padding: 1em 1em 0 1em;
  27. overflow: auto;
  28. position: relative; /* Keeps IE7 from flowing outside the modal. */
  29. }
  30. div.ctools-modal-content .modal-form {
  31. }
  32. div.ctools-modal-content a.close {
  33. color: white;
  34. }
  35. div.ctools-modal-content a.close:hover {
  36. text-decoration: none;
  37. }
  38. div.ctools-modal-content a.close img {
  39. position: relative;
  40. top: 1px;
  41. }
  42. div.ctools-modal-content .modal-content .modal-throbber-wrapper {
  43. text-align: center;
  44. }
  45. div.ctools-modal-content .modal-content .modal-throbber-wrapper img {
  46. margin-top: 160px;
  47. }
  48. /** modal forms CSS **/
  49. div.ctools-modal-content .form-item label {
  50. width: 15em;
  51. float: left;
  52. }
  53. div.ctools-modal-content .form-item label.option {
  54. width: auto;
  55. float: none;
  56. }
  57. div.ctools-modal-content .form-item .description {
  58. clear: left;
  59. }
  60. div.ctools-modal-content .form-item .description .tips {
  61. margin-left: 2em;
  62. }
  63. div.ctools-modal-content .no-float .form-item * {
  64. float: none;
  65. }
  66. div.ctools-modal-content .modal-form .no-float label {
  67. width: auto;
  68. }
  69. div.ctools-modal-content fieldset,
  70. div.ctools-modal-content .form-radios,
  71. div.ctools-modal-content .form-checkboxes {
  72. clear: left;
  73. }
  74. div.ctools-modal-content .resizable-textarea {
  75. width: auto;
  76. margin-left: 15em;
  77. margin-right: 5em;
  78. }
  79. div.ctools-modal-content .container-inline .form-item {
  80. margin-right: 2em;
  81. }
  82. #views-exposed-pane-wrapper .form-item {
  83. margin-top: 0;
  84. margin-bottom: 0;
  85. }