style_alert.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #popup_container {
  2. font-family: Arial, sans-serif;
  3. font-size: 12px;
  4. min-width: 300px; /* Dialog will be no smaller than this */
  5. max-width: 600px; /* Dialog will wrap after this width */
  6. background: #FFF;
  7. border: solid 5px #999;
  8. color: #000;
  9. -moz-border-radius: 5px;
  10. -webkit-border-radius: 5px;
  11. border-radius: 5px;
  12. }
  13. #popup_title {
  14. font-size: 14px;
  15. font-weight: bold;
  16. text-align: center;
  17. line-height: 1.75em;
  18. color: #666;
  19. background: #CCC url(images/title.gif) top repeat-x;
  20. border: solid 1px #FFF;
  21. border-bottom: solid 1px #999;
  22. cursor: default;
  23. padding: 0em;
  24. margin: 0em;
  25. }
  26. #popup_content {
  27. background: 16px 16px no-repeat url(images/info.gif);
  28. padding: 1em 1.75em;
  29. margin: 0em;
  30. }
  31. #popup_content.alert {
  32. background-image: url(images/info.gif);
  33. }
  34. #popup_content.confirm {
  35. background-image: url(images/important.gif);
  36. }
  37. #popup_content.prompt {
  38. background-image: url(images/help.gif);
  39. }
  40. #popup_content.choice {
  41. background-image: url(images/important.gif);
  42. }
  43. #popup_content.date {
  44. background-image: url(images/help.gif);
  45. }
  46. #popup_message {
  47. padding-left: 48px;
  48. }
  49. #popup_panel {
  50. text-align: center;
  51. margin: 1em 0em 0em 1em;
  52. }
  53. #popup_prompt {
  54. margin: .5em 0em;
  55. }