style.css 751 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. li.status-info {
  2. color: #5BC0DE;
  3. }
  4. li.status-warning {
  5. color: #D9534F;
  6. }
  7. li.status-danger {
  8. color: #D9534F;
  9. }
  10. li.status-success {
  11. color: #5CB85C;
  12. }
  13. img#status-loading {
  14. display: none;
  15. margin-right: 5px;
  16. }
  17. img#save-loading {
  18. display: none;
  19. margin-left: 5px;
  20. }
  21. div#status {
  22. display: none;
  23. margin-top: 10px;
  24. }
  25. div#status ul {
  26. list-style-type: none;
  27. padding: 0;
  28. margin: 0;
  29. }
  30. a.btn-danger span {
  31. color: #eee;
  32. }
  33. a.btn-danger:hover span {
  34. color: #fff;
  35. }
  36. a.not-allowed {
  37. cursor: not-allowed;
  38. }
  39. input.allowed {
  40. cursor: default;
  41. }
  42. a.btn-disabled, a.btn-disabled:hover, a.btn-disabled:active {
  43. background-color: #999;
  44. background-image: none;
  45. border-color: #888;
  46. }
  47. a.btn-disabled:hover span {
  48. color: #eee;
  49. }