flash-messages.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .wp-flash-messages-error {
  2. text-align: left;
  3. padding: 8px 16px 8px 32px;
  4. margin: 4px;
  5. border-style: solid;
  6. border-width: 1px;
  7. font: normal bold xx-small Verdana, sans-serif;
  8. background: #ffd5cc url(../images/exclamation.png) 8px 50% no-repeat;
  9. color: #c2462c; border-color: #c2462c;
  10. }
  11. .wp-flash-messages-warning {
  12. text-align: left;
  13. padding: 8px 16px 8px 32px;
  14. margin: 4px;
  15. border-style: solid;
  16. border-width: 1px;
  17. font: normal bold xx-small Verdana, sans-serif;
  18. background: #fff1cc url(../images/error.png) 8px 50% no-repeat;
  19. color: #c16803; border-color: #c16803;
  20. }
  21. .wp-flash-messages-confirmation {
  22. text-align: left;
  23. padding: 8px 16px 8px 32px;
  24. margin: 4px;
  25. border-style: solid;
  26. border-width: 1px;
  27. font: normal bold xx-small Verdana, sans-serif;
  28. background: #c5ffb2 url(../images/accept.png) 8px 50% no-repeat;
  29. color: #1e731a; border-color: #1e731a;
  30. }
  31. .wp-flash-messages-information {
  32. text-align: left;
  33. padding: 8px 16px 8px 32px;
  34. margin: 4px;
  35. border-style: solid;
  36. border-width: 1px;
  37. font: normal bold xx-small Verdana, sans-serif;
  38. background: #cce7ff url(../images/information.png) 8px 50% no-repeat;
  39. color: #344f88; border-color: #344f88;
  40. }