You are here

support-tickets.css in Support Ticketing System 6

Same filename and directory in other branches
  1. 7 support-tickets.css
/* Color ticket listing by state & priority */
.support tr.state-1.priority-1 {
  background-color: #fdffdd
}
.support tr.state-1.priority-2 {
  background-color: #fbffc2
}
.support tr.state-1.priority-3 {
  background-color: #f9ff9c
}
.support tr.state-1.priority-4 {
  background-color: #f6ff6b
}
.support tr.state-1 td.active {
  background-color: #e9edab
}
.support tr.state-2.priority-1 {
  background-color: #ecfff3
}
.support tr.state-2.priority-2 {
  background-color: #d0ffe1
}
.support tr.state-2.priority-3 {
  background-color: #aaffc8
}
.support tr.state-2.priority-4 {
  background-color: #80ffad
}
.support tr.state-2 td.active {
  background-color: #cdecd8
}
.support tr.state-3.priority-1 {
  background-color: #ffdada
}
.support tr.state-3.priority-2 {
  background-color: #ffc6c6
}
.support tr.state-3.priority-3 {
  background-color: #ffb4b4
}
.support tr.state-3.priority-4 {
  background-color: #ffa1a1
}
.support tr.state-3 td.active {
  background-color: #eccdcd
}
.support tr.state-4.priority-1 {
  background-color: #f8f8f8
}
.support tr.state-4.priority-2 {
  background-color: #f3f3f3
}
.support tr.state-4.priority-3 {
  background-color: #ececec
}
.support tr.state-4.priority-4 {
  background-color: #e8e8e8
}
.support tr.state-4 td.active {
  background-color: #e1e1e1
}

/* Theme ticket status/priority/client/assigned changes. */
.support-state {
  padding: 3px;
  padding-left: 16px;
  background: #edf4f9;
  font-size: .85em;
}
.support-priority {
  padding: 3px;
  padding-left: 16px;
  background: #edf4f9;
  font-size: .85em;
}
.support-client {
  padding: 3px;
  padding-left: 16px;
  background: #edf4f9;
  font-size: .85em;
}
.support-assigned {
  padding: 3px;
  padding-left: 16px;
  background: #edf4f9;
  font-size: .85em;
}

/* Theme ticket id in ticket listing. */
.ticket-id:before {
  font-size: .95em;
  color: #999;
  content: '#';
}
.ticket-id {
  font-size: .75em;
}

File

support-tickets.css
View source
  1. /* Color ticket listing by state & priority */
  2. .support tr.state-1.priority-1 {
  3. background-color: #fdffdd
  4. }
  5. .support tr.state-1.priority-2 {
  6. background-color: #fbffc2
  7. }
  8. .support tr.state-1.priority-3 {
  9. background-color: #f9ff9c
  10. }
  11. .support tr.state-1.priority-4 {
  12. background-color: #f6ff6b
  13. }
  14. .support tr.state-1 td.active {
  15. background-color: #e9edab
  16. }
  17. .support tr.state-2.priority-1 {
  18. background-color: #ecfff3
  19. }
  20. .support tr.state-2.priority-2 {
  21. background-color: #d0ffe1
  22. }
  23. .support tr.state-2.priority-3 {
  24. background-color: #aaffc8
  25. }
  26. .support tr.state-2.priority-4 {
  27. background-color: #80ffad
  28. }
  29. .support tr.state-2 td.active {
  30. background-color: #cdecd8
  31. }
  32. .support tr.state-3.priority-1 {
  33. background-color: #ffdada
  34. }
  35. .support tr.state-3.priority-2 {
  36. background-color: #ffc6c6
  37. }
  38. .support tr.state-3.priority-3 {
  39. background-color: #ffb4b4
  40. }
  41. .support tr.state-3.priority-4 {
  42. background-color: #ffa1a1
  43. }
  44. .support tr.state-3 td.active {
  45. background-color: #eccdcd
  46. }
  47. .support tr.state-4.priority-1 {
  48. background-color: #f8f8f8
  49. }
  50. .support tr.state-4.priority-2 {
  51. background-color: #f3f3f3
  52. }
  53. .support tr.state-4.priority-3 {
  54. background-color: #ececec
  55. }
  56. .support tr.state-4.priority-4 {
  57. background-color: #e8e8e8
  58. }
  59. .support tr.state-4 td.active {
  60. background-color: #e1e1e1
  61. }
  62. /* Theme ticket status/priority/client/assigned changes. */
  63. .support-state {
  64. padding: 3px;
  65. padding-left: 16px;
  66. background: #edf4f9;
  67. font-size: .85em;
  68. }
  69. .support-priority {
  70. padding: 3px;
  71. padding-left: 16px;
  72. background: #edf4f9;
  73. font-size: .85em;
  74. }
  75. .support-client {
  76. padding: 3px;
  77. padding-left: 16px;
  78. background: #edf4f9;
  79. font-size: .85em;
  80. }
  81. .support-assigned {
  82. padding: 3px;
  83. padding-left: 16px;
  84. background: #edf4f9;
  85. font-size: .85em;
  86. }
  87. /* Theme ticket id in ticket listing. */
  88. .ticket-id:before {
  89. font-size: .95em;
  90. color: #999;
  91. content: '#';
  92. }
  93. .ticket-id {
  94. font-size: .75em;
  95. }