You are here

modal_forms_popup.css in Modal forms (with ctools) 6

Same filename and directory in other branches
  1. 7 css/modal_forms_popup.css
/* Reset some styles from system.css and modal.css */

div.modal-forms-modal-content .resizable-textarea {
  margin-left: 0;
  margin-right: 0;
}

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

div.modal-forms-modal-content .item-list ul li {
  margin: 0 0 0.25em 1.5em;
}

div.modal-forms-modal-content div.messages {
  border: none;
  margin: 0;
  padding: 0;
}
div.modal-forms-modal-content div.messages > .messages {
  border: 1px solid;
  margin: 6px 0;
  padding: 10px 10px 10px 40px;
}

/* Styles for modal forms modal */

div.modal-forms-modal-content {
  background: transparent;
  color: #000;
  font: 12px "Lucida Grande", Verdana, Arial, sans-serif;
  border: 0;
  margin: 0;
  padding: 0;
}

div.modal-forms-modal-content .modal-scroll {
  overflow: hidden;
  overflow-y: auto;
}

div.modal-forms-modal-content .popups-container {
  overflow: hidden;
  height: 100%;
  background: #fff;
  padding: 5px;
  text-align: left;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

div.modal-forms-modal-content .modal-header {
  background-color: transparent;
}

div.modal-forms-modal-content .modal-title {
  display: inline;
  color: #000;
}

div.modal-forms-modal-content .popups-close {
  float: none;
  text-align: left;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  background: url(../images/controls.png) -25px 0 no-repeat;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

div.modal-forms-modal-content .popups-close:hover {
  background-position: -25px -25px;
}

File

css/modal_forms_popup.css
View source
  1. /* Reset some styles from system.css and modal.css */
  2. div.modal-forms-modal-content .resizable-textarea {
  3. margin-left: 0;
  4. margin-right: 0;
  5. }
  6. div.modal-forms-modal-content .form-item label {
  7. float: none;
  8. width: auto;
  9. }
  10. div.modal-forms-modal-content .item-list ul li {
  11. margin: 0 0 0.25em 1.5em;
  12. }
  13. div.modal-forms-modal-content div.messages {
  14. border: none;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. div.modal-forms-modal-content div.messages > .messages {
  19. border: 1px solid;
  20. margin: 6px 0;
  21. padding: 10px 10px 10px 40px;
  22. }
  23. /* Styles for modal forms modal */
  24. div.modal-forms-modal-content {
  25. background: transparent;
  26. color: #000;
  27. font: 12px "Lucida Grande", Verdana, Arial, sans-serif;
  28. border: 0;
  29. margin: 0;
  30. padding: 0;
  31. }
  32. div.modal-forms-modal-content .modal-scroll {
  33. overflow: hidden;
  34. overflow-y: auto;
  35. }
  36. div.modal-forms-modal-content .popups-container {
  37. overflow: hidden;
  38. height: 100%;
  39. background: #fff;
  40. padding: 5px;
  41. text-align: left;
  42. -moz-border-radius: 5px;
  43. -webkit-border-radius: 5px;
  44. border-radius: 5px;
  45. }
  46. div.modal-forms-modal-content .modal-header {
  47. background-color: transparent;
  48. }
  49. div.modal-forms-modal-content .modal-title {
  50. display: inline;
  51. color: #000;
  52. }
  53. div.modal-forms-modal-content .popups-close {
  54. float: none;
  55. text-align: left;
  56. cursor: pointer;
  57. position: absolute;
  58. top: 5px;
  59. right: 5px;
  60. background: url(../images/controls.png) -25px 0 no-repeat;
  61. width: 25px;
  62. height: 25px;
  63. text-indent: -9999px;
  64. }
  65. div.modal-forms-modal-content .popups-close:hover {
  66. background-position: -25px -25px;
  67. }