todo-list.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. //
  2. // Todo list
  3. // --------------------------------------------------
  4. .todo {
  5. color: @todo-color;
  6. margin-bottom: 20px;
  7. border-radius: @todo-border-radius;
  8. ul {
  9. background-color: @todo-bg-active;
  10. margin: 0;
  11. padding: 0;
  12. list-style-type: none;
  13. border-radius: 0 0 @todo-border-radius @todo-border-radius;
  14. }
  15. li {
  16. background: @todo-bg;
  17. background-size: 20px 20px;
  18. cursor: pointer;
  19. font-size: ceil((@component-font-size-base * 0.933)); // ~14px
  20. line-height: 1.214;
  21. margin-top: 2px;
  22. padding: 18px 42px 21px 25px;
  23. position: relative;
  24. transition: .25s;
  25. &:first-child {
  26. margin-top: 0;
  27. }
  28. &:last-child {
  29. border-radius: 0 0 @todo-border-radius @todo-border-radius;
  30. padding-bottom: 21px;
  31. }
  32. &.todo-done {
  33. background: transparent;
  34. color: @todo-color-active;
  35. .todo-name {
  36. color: @todo-color-active;
  37. }
  38. }
  39. &:after {
  40. content: " ";
  41. display: block;
  42. width: 20px;
  43. height: 20px;
  44. position: absolute;
  45. top: 50%;
  46. right: 22px;
  47. margin-top: -10px;
  48. background: @todo-name-color;
  49. border-radius: 50%;
  50. }
  51. &.todo-done:after {
  52. content: "\e60a";
  53. font-family: 'Flat-UI-Icons';
  54. text-align: center;
  55. font-size: ceil((@component-font-size-base * 0.786)); // ~11px
  56. line-height: 21px;
  57. font-style: normal;
  58. font-weight: normal;
  59. font-variant: normal;
  60. text-transform: none;
  61. -webkit-font-smoothing: antialiased;
  62. -moz-osx-font-smoothing: grayscale;
  63. background: @todo-color-active;
  64. color: @todo-bg-active;
  65. }
  66. }
  67. }
  68. .todo-search {
  69. position: relative;
  70. background: @todo-search-bg;
  71. background-size: 16px 16px;
  72. border-radius: @todo-border-radius @todo-border-radius 0 0;
  73. color: @todo-search-color;
  74. padding: 19px 25px 20px;
  75. &:before {
  76. position: absolute;
  77. font-family: 'Flat-UI-Icons';
  78. content: "\e630";
  79. font-size: 16px;
  80. line-height: 17px;
  81. display: inline-block;
  82. top: 50%;
  83. left: 92%;
  84. margin: -.5em 0 0 -1em;
  85. }
  86. }
  87. .todo-search-field {
  88. background: none;
  89. border: none;
  90. color: @todo-search-color;
  91. font-size: 19px;
  92. font-weight: 700;
  93. margin: 0;
  94. line-height: 23px;
  95. padding: 5px 0;
  96. text-indent: 0;
  97. box-shadow: none;
  98. .placeholder(@todo-search-color);
  99. outline: none;
  100. }
  101. .todo-icon {
  102. float: left;
  103. font-size: 24px;
  104. padding: 11px 22px 0 0;
  105. }
  106. .todo-content {
  107. padding-top: 1px;
  108. overflow: hidden;
  109. }
  110. .todo-name {
  111. color: @todo-name-color;
  112. font-size: 17px;
  113. margin: 1px 0 3px;
  114. }