You are here

popups.css in Popups API (Ajax Dialogs) 6.2

Same filename and directory in other branches
  1. 5 popups.css
  2. 6 popups.css
  3. 7 popups.css
/*
** Ajax popups dialog box styles
*/

#popups-overlay {
  position: absolute;
  z-index: 8;  
  background: black;
  top: 0;
}
#popups-loading {
  position: absolute;
  z-index: 10;  
  opacity: 0.75;
  width: 100px;
  height: 100px;
  display: none;
}
.popups-box {
  position: absolute;
  z-index: 9;  
  background: white;
  border: 1px solid black;
  padding: 0.5em;
  width: 600px;
  overflow: auto;  
}
.popups-title {
  font-weight: bold;
  margin-bottom: 0.25em;
}
.popups-title div.title {
  float: left;
}
.popups-title .popups-close {
  float: right;
}
.popups-title .popups-close a {
  font-weight: normal;  
}
/* Allow messages to be used as the title of the popups */
.popups-box div.messages {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

File

popups.css
View source
  1. /*
  2. ** Ajax popups dialog box styles
  3. */
  4. #popups-overlay {
  5. position: absolute;
  6. z-index: 8;
  7. background: black;
  8. top: 0;
  9. }
  10. #popups-loading {
  11. position: absolute;
  12. z-index: 10;
  13. opacity: 0.75;
  14. width: 100px;
  15. height: 100px;
  16. display: none;
  17. }
  18. .popups-box {
  19. position: absolute;
  20. z-index: 9;
  21. background: white;
  22. border: 1px solid black;
  23. padding: 0.5em;
  24. width: 600px;
  25. overflow: auto;
  26. }
  27. .popups-title {
  28. font-weight: bold;
  29. margin-bottom: 0.25em;
  30. }
  31. .popups-title div.title {
  32. float: left;
  33. }
  34. .popups-title .popups-close {
  35. float: right;
  36. }
  37. .popups-title .popups-close a {
  38. font-weight: normal;
  39. }
  40. /* Allow messages to be used as the title of the popups */
  41. .popups-box div.messages {
  42. background: transparent;
  43. border: none;
  44. padding: 0;
  45. margin: 0;
  46. }