app-todo.css 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. .todo-application .content-area-wrapper {
  2. border: 1px solid #ebe9f1;
  3. border-radius: 0.428rem; }
  4. .todo-application .content-area-wrapper .sidebar .todo-sidebar {
  5. width: 260px;
  6. height: inherit;
  7. display: flex;
  8. background-color: #fff;
  9. border-top-left-radius: 0.428rem;
  10. border-bottom-left-radius: 0.428rem;
  11. transition: all 0.3s ease, background 0s; }
  12. .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu {
  13. width: 100%;
  14. z-index: 3; }
  15. .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .add-task {
  16. padding: 1.5rem; }
  17. .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list {
  18. position: relative;
  19. height: calc(100% - 80px); }
  20. .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item {
  21. padding: 0.58rem 1.5rem;
  22. border: 0;
  23. font-weight: 500;
  24. letter-spacing: 0.4px;
  25. border-left: 2px solid transparent;
  26. border-radius: 0; }
  27. .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item + .list-group-item.active {
  28. margin-top: 0; }
  29. .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:hover, .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item:focus, .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active {
  30. background: transparent;
  31. color: #7367f0; }
  32. .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active {
  33. border-color: #7367f0; }
  34. .todo-application .content-area-wrapper .ql-editor {
  35. padding-bottom: 0; }
  36. .todo-application .content-area-wrapper .content-right {
  37. width: calc(100% - 260px);
  38. border-left: 1px solid #ebe9f1; }
  39. .todo-application .content-area-wrapper .content-right .todo-app-list {
  40. height: inherit; }
  41. .todo-application .content-area-wrapper .content-right .app-fixed-search {
  42. padding: 0.4215rem 0.5rem;
  43. border-bottom: 1px solid #ebe9f1;
  44. background-color: #fff;
  45. border-top-right-radius: 0.357rem; }
  46. .todo-application .content-area-wrapper .content-right .app-fixed-search .input-group:focus-within {
  47. box-shadow: none; }
  48. .todo-application .content-area-wrapper .content-right .app-fixed-search input,
  49. .todo-application .content-area-wrapper .content-right .app-fixed-search .input-group-text {
  50. border: 0;
  51. background-color: transparent; }
  52. .todo-application .content-area-wrapper .content-right .todo-title {
  53. margin-left: 0.5rem;
  54. margin-right: 0.5rem; }
  55. .todo-application .content-area-wrapper .content-right .completed .todo-title {
  56. color: #b9b9c3; }
  57. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper {
  58. position: relative;
  59. height: calc(100% - 3.56rem);
  60. background-color: #fff;
  61. border-radius: 0; }
  62. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list {
  63. padding: 0;
  64. margin: 0;
  65. list-style: none; }
  66. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li {
  67. cursor: pointer;
  68. transition: all 0.2s, border-color 0s;
  69. position: relative;
  70. padding: 0.893rem 2rem; }
  71. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li:not(:first-child) {
  72. border-top: 1px solid #ebe9f1; }
  73. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li:hover {
  74. transform: translateY(-4px);
  75. box-shadow: 0 3px 10px 0 #ebe9f1;
  76. transition: all 0.2s; }
  77. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-title-wrapper {
  78. display: flex;
  79. justify-content: space-between; }
  80. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-title-area,
  81. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .title-wrapper {
  82. display: flex;
  83. align-items: center; }
  84. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action {
  85. display: flex;
  86. align-items: center; }
  87. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action > small {
  88. margin-left: auto; }
  89. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action a {
  90. cursor: pointer;
  91. font-size: 1.2rem;
  92. line-height: 1.5; }
  93. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .badge-wrapper {
  94. display: flex; }
  95. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .badge-wrapper .badge:not(:last-child) {
  96. margin-right: 0.5rem; }
  97. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .no-results {
  98. display: none;
  99. padding: 1.5rem;
  100. text-align: center; }
  101. .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .no-results.show {
  102. display: block; }
  103. .todo-application .todo-item .drag-icon {
  104. visibility: hidden;
  105. cursor: move;
  106. position: absolute;
  107. left: 0.2rem;
  108. width: 1.75rem;
  109. height: 4rem;
  110. padding: 0 5px; }
  111. .todo-application .todo-item:hover .drag-icon {
  112. visibility: visible; }
  113. .todo-application form .error:not(li):not(input) {
  114. color: #ea5455;
  115. font-size: 85%;
  116. margin-top: 0.25rem; }
  117. .gu-mirror {
  118. list-style-type: none;
  119. list-style: none;
  120. padding: 0.893rem 2rem;
  121. background-color: #fff;
  122. border-top: 1px solid #ebe9f1;
  123. border-bottom: 1px solid #ebe9f1;
  124. box-shadow: 0 0 10px 0 rgba(34, 41, 47, 0.25); }
  125. .gu-mirror .todo-title-wrapper {
  126. display: flex;
  127. justify-content: space-between; }
  128. .gu-mirror .todo-title-area,
  129. .gu-mirror .title-wrapper {
  130. display: flex;
  131. align-items: center; }
  132. .gu-mirror .todo-item-action {
  133. display: flex;
  134. align-items: center;
  135. justify-content: space-between; }
  136. .gu-mirror .todo-title {
  137. padding-left: 1rem; }
  138. .gu-mirror.completed .todo-title {
  139. color: #b9b9c3; }
  140. @-webkit-keyframes fadeIn {
  141. 0% {
  142. opacity: 0;
  143. top: 100px; }
  144. 75% {
  145. opacity: 0.5;
  146. top: 0px; }
  147. 100% {
  148. opacity: 1; } }
  149. @media (max-width: 991.98px) {
  150. .todo-application .content-area-wrapper .sidebar-left .todo-sidebar {
  151. transform: translateX(-110%);
  152. transition: all 0.3s ease-in-out;
  153. left: 0;
  154. position: absolute;
  155. z-index: 5;
  156. border-top-left-radius: 0.25rem;
  157. border-bottom-left-radius: 0.25rem; }
  158. .todo-application .content-area-wrapper .sidebar-left.show .todo-sidebar {
  159. transform: translateX(0%);
  160. transition: all 0.3s ease; }
  161. .todo-application .content-area-wrapper .content-right {
  162. width: 100%;
  163. border-left: 0; }
  164. .todo-application .content-area-wrapper .content-right .app-fixed-search {
  165. border-top-left-radius: 0.357rem; }
  166. .todo-application .content-area-wrapper .todo-title-wrapper {
  167. flex-direction: column; }
  168. .todo-application .content-area-wrapper .todo-title-wrapper .title-wrapper {
  169. margin-bottom: 0.5rem; }
  170. .todo-application .content-area-wrapper .todo-title-wrapper .todo-title {
  171. display: -webkit-box;
  172. -webkit-line-clamp: 1;
  173. -webkit-box-orient: vertical;
  174. overflow: hidden; }
  175. .todo-application .content-area-wrapper .todo-title-wrapper .badge-wrapper {
  176. margin-right: auto !important; } }
  177. @media (max-width: 349.98px) {
  178. .todo-application .content-area-wrapper .sidebar .todo-sidebar {
  179. width: 230px; } }
  180. .horizontal-menu .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper {
  181. height: calc(100% - 3.6rem); }