tasks.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. * Row styles
  3. */
  4. .tasks-completed-task .x-grid-cell {
  5. text-decoration: line-through;
  6. color: gray;
  7. }
  8. .tasks-overdue-task {
  9. color:#fb223a;
  10. }
  11. /*
  12. * Action Icons
  13. */
  14. .x-action-col-icon {
  15. cursor: pointer;
  16. }
  17. /*
  18. * Divider
  19. */
  20. .divider {
  21. height: 1px;
  22. background: #a3bad9;
  23. margin-bottom: 8px;
  24. }
  25. /*
  26. * Column Headers
  27. */
  28. .tasks-icon-column-header .x-column-header-text {
  29. display: block;
  30. height: 22px;
  31. width: 16px;
  32. background-repeat: no-repeat;
  33. background-position: 0 3px;
  34. }
  35. .tasks-icon-column-header .x-column-header-inner {
  36. padding: 0 4px;
  37. }
  38. .tasks-done-column-header .x-column-header-inner {
  39. padding: 0 6px;
  40. }
  41. .tasks-done-column-header .x-column-header-text {
  42. background: url('../images/check_header.png') no-repeat 0 7px;
  43. }
  44. .tasks-reminder-column-header .x-column-header-text {
  45. background-image: url('../images/bell.png');
  46. }
  47. .tasks-edit-column-header .x-column-header-text {
  48. background-image: url('../images/edit_task.png');
  49. }
  50. .tasks-delete-column-header .x-column-header-text {
  51. background-image: url('../images/delete.png');
  52. }
  53. /*
  54. * Icon styles
  55. */
  56. .tasks-new {
  57. background: url('../images/new.png') no-repeat;
  58. }
  59. .tasks-new-folder {
  60. background-image: url('../images/new_folder.png');
  61. }
  62. .tasks-new-list {
  63. background-image: url('../images/new_list.png');
  64. }
  65. .tasks-delete-task {
  66. background-image: url('../images/delete_task.png');
  67. }
  68. .tasks-delete-list {
  69. background-image: url('../images/delete_list.png');
  70. }
  71. .tasks-delete-folder {
  72. background-image: url('../images/delete_folder.png');
  73. }
  74. .tasks-mark-complete {
  75. background-image: url('../images/mark_complete.png');
  76. }
  77. .tasks-mark-active {
  78. background-image: url('../images/mark_active.png');
  79. }
  80. .tasks-show-all {
  81. background-image: url('../images/show_all.png');
  82. }
  83. .tasks-show-active {
  84. background-image: url('../images/show_active.png');
  85. }
  86. .tasks-show-complete {
  87. background-image: url('../images/show_complete.png');
  88. }
  89. /*
  90. * New Task Form
  91. */
  92. .tasks-new-form .x-form-item {
  93. margin: 2px 3px 2px 2px;
  94. }
  95. .tasks-new-form .tasks-new {
  96. background-position: 4px 5px;
  97. }
  98. .tasks-new-form .x-form-field, .x-form-display-field {
  99. font-size: 11px;
  100. }
  101. /*
  102. * Reminder Window
  103. */
  104. .tasks-reminder-icon {
  105. width: 16px;
  106. height: 16px;
  107. background: url('../images/check.png');
  108. float: left;
  109. }
  110. .tasks-reminder-title {
  111. font-weight: bold;
  112. margin-left: 20px;
  113. }
  114. .tasks-reminder-due {
  115. margin-left: 20px;
  116. }
  117. /*
  118. * CheckColumn styles
  119. */
  120. .x-grid-cell-checkcolumn .x-grid-cell-inner {
  121. line-height: 0;
  122. padding: 2px 4px;
  123. }
  124. .x-grid-with-row-lines .x-grid-cell-checkcolumn .x-grid-cell-inner {
  125. padding-top: 1px;
  126. }
  127. .x-grid-checkheader {
  128. height: 16px;
  129. width: 16px;
  130. }
  131. .x-grid-checkheader-inner {
  132. height: 16px;
  133. width: 16px;
  134. cursor: pointer;
  135. background: url('../images/check.png') no-repeat 1px 1px;
  136. }
  137. .x-grid-checkheader-checked .x-grid-checkheader-inner {
  138. background-position: -1px -16px;
  139. }
  140. .x-grid-checkheader-over {
  141. background: url('../images/check.png') no-repeat 0 -32px;
  142. }
  143. .tasks-completed-task .x-grid-cell-checkcolumn {
  144. text-decoration: none;
  145. }
  146. /*
  147. * ReminderColumn styles
  148. */
  149. .x-grid-cell-remindercolumn .x-grid-cell-inner {
  150. line-height: 0;
  151. padding: 2px;
  152. }
  153. .x-grid-with-row-lines .x-grid-cell-remindercolumn .x-grid-cell-inner {
  154. padding-top: 1px;
  155. }
  156. .x-grid-reminder {
  157. height: 16px;
  158. width: 16px;
  159. cursor: pointer;
  160. background: url('../images/bell.png') no-repeat;
  161. }
  162. .x-grid-reminder-empty {
  163. background-position: 0 -50px;
  164. }