cardDate.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .card-date {
  2. display: block;
  3. border-radius: 4px;
  4. padding: 1px 3px;
  5. background-color: #dbdbdb;
  6. }
  7. .card-date:hover,
  8. .card-date.is-active {
  9. background-color: #b3b3b3;
  10. }
  11. .card-date.current,
  12. .card-date.almost-due,
  13. .card-date.due,
  14. .card-date.long-overdue {
  15. color: #fff;
  16. }
  17. .card-date.current {
  18. background-color: #5ba639;
  19. }
  20. .card-date.current:hover,
  21. .card-date.current.is-active {
  22. background-color: #46802c;
  23. }
  24. .card-date.almost-due {
  25. background-color: #edc909;
  26. }
  27. .card-date.almost-due:hover,
  28. .card-date.almost-due.is-active {
  29. background-color: #bc9f07;
  30. }
  31. .card-date.due {
  32. background-color: #fa3f00;
  33. }
  34. .card-date.due:hover,
  35. .card-date.due.is-active {
  36. background-color: #c73200;
  37. }
  38. .card-date.long-overdue {
  39. background-color: #fd5d47;
  40. }
  41. .card-date.long-overdue:hover,
  42. .card-date.long-overdue.is-active {
  43. background-color: #fd3e24;
  44. }
  45. .card-date.end-date time::before {
  46. content: "\f253";
  47. }
  48. .card-date.due-date time::before {
  49. content: "\f090";
  50. }
  51. .card-date.start-date time::before {
  52. content: "\f251";
  53. }
  54. .card-date.received-date time::before {
  55. content: "\f08b";
  56. }
  57. .card-date time::before {
  58. font: normal normal normal 14px/1 FontAwesome;
  59. font-size: inherit;
  60. -webkit-font-smoothing: antialiased;
  61. margin-right: 0.3em;
  62. }
  63. .customfield-date {
  64. display: block;
  65. border-radius: 4px;
  66. padding: 1px 3px;
  67. }