You are here

popups.css in Popups API (Ajax Dialogs) 5

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

#popups-overlay {
  position: absolute;
  background: black;
  z-index: 9;  
  top: 0;
}
#popups-loading {
  z-index: 10;  
  opacity: 0.75;
  position: relative;
}  
#popups-loading div {
  position: absolute;  
}
#popups {
  border: 1px solid black;
  background: white;
  position: absolute;
  z-index: 10;  
  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;  
}
/*
#popups-title div.clear {
  clear: both;
}
*/
/* Allow messages to be used as the title of the popups */
#popups 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. background: black;
  7. z-index: 9;
  8. top: 0;
  9. }
  10. #popups-loading {
  11. z-index: 10;
  12. opacity: 0.75;
  13. position: relative;
  14. }
  15. #popups-loading div {
  16. position: absolute;
  17. }
  18. #popups {
  19. border: 1px solid black;
  20. background: white;
  21. position: absolute;
  22. z-index: 10;
  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. /*
  41. #popups-title div.clear {
  42. clear: both;
  43. }
  44. */
  45. /* Allow messages to be used as the title of the popups */
  46. #popups div.messages {
  47. background: transparent;
  48. border: none;
  49. padding: 0;
  50. margin: 0;
  51. }