todo.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Todo box */
  2. ul.todo-box {
  3. margin: 0;
  4. padding: 0;
  5. list-style: none;
  6. }
  7. .todo-box li {
  8. margin: 0 0 2px;
  9. padding: 10px;
  10. border-left-width: 3px;
  11. border-left-style: solid;
  12. background: #fcfcfc;
  13. }
  14. .todo-box li .sort-handle {
  15. font-size: 16px;
  16. display: block;
  17. float: left;
  18. width: 18px;
  19. height: 18px;
  20. margin-right: 10px;
  21. cursor: move;
  22. text-align: center;
  23. opacity: .75;
  24. -moz-opacity: .75;
  25. filter: alpha(opacity: 75);
  26. }
  27. .todo-box li .sort-handle:hover {
  28. opacity: 1;
  29. -moz-opacity: 1;
  30. filter: alpha(opacity: 100);
  31. }
  32. .todo-box li a.btn-xs {
  33. margin-left: 3px;
  34. }
  35. .todo-box li input {
  36. display: block;
  37. float: left;
  38. width: auto;
  39. margin: 5px 5px 0 0;
  40. }
  41. .todo-box li label {
  42. padding: 0 5px;
  43. font-weight: normal;
  44. }
  45. .todo-box li .btn.small {
  46. line-height: 16px;
  47. width: 16px;
  48. min-width: 16px;
  49. height: 16px;
  50. margin-left: 5px;
  51. opacity: .75;
  52. -moz-opacity: .75;
  53. filter: alpha(opacity: 75);
  54. }
  55. .todo-box li.todo-done {
  56. opacity: .65;
  57. -moz-opacity: .65;
  58. filter: alpha(opacity: 65);
  59. }
  60. .todo-box li.todo-done label {
  61. font-style: italic;
  62. text-decoration: line-through;
  63. }