123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- .todo-application .content-area-wrapper {
- border: 1px solid #ebe9f1;
- border-radius: 0.428rem; }
- .todo-application .content-area-wrapper .sidebar .todo-sidebar {
- width: 260px;
- height: inherit;
- display: flex;
- background-color: #fff;
- border-top-left-radius: 0.428rem;
- border-bottom-left-radius: 0.428rem;
- transition: all 0.3s ease, background 0s; }
- .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu {
- width: 100%;
- z-index: 3; }
- .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .add-task {
- padding: 1.5rem; }
- .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .sidebar-menu-list {
- position: relative;
- height: calc(100% - 80px); }
- .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item {
- padding: 0.58rem 1.5rem;
- border: 0;
- font-weight: 500;
- letter-spacing: 0.4px;
- border-left: 2px solid transparent;
- border-radius: 0; }
- .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item + .list-group-item.active {
- margin-top: 0; }
- .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 {
- background: transparent;
- color: #7367f0; }
- .todo-application .content-area-wrapper .sidebar .todo-sidebar .todo-app-menu .list-group .list-group-item.active {
- border-color: #7367f0; }
- .todo-application .content-area-wrapper .ql-editor {
- padding-bottom: 0; }
- .todo-application .content-area-wrapper .content-right {
- width: calc(100% - 260px);
- border-left: 1px solid #ebe9f1; }
- .todo-application .content-area-wrapper .content-right .todo-app-list {
- height: inherit; }
- .todo-application .content-area-wrapper .content-right .app-fixed-search {
- padding: 0.4215rem 0.5rem;
- border-bottom: 1px solid #ebe9f1;
- background-color: #fff;
- border-top-right-radius: 0.357rem; }
- .todo-application .content-area-wrapper .content-right .app-fixed-search .input-group:focus-within {
- box-shadow: none; }
- .todo-application .content-area-wrapper .content-right .app-fixed-search input,
- .todo-application .content-area-wrapper .content-right .app-fixed-search .input-group-text {
- border: 0;
- background-color: transparent; }
- .todo-application .content-area-wrapper .content-right .todo-title {
- margin-left: 0.5rem;
- margin-right: 0.5rem; }
- .todo-application .content-area-wrapper .content-right .completed .todo-title {
- color: #b9b9c3; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper {
- position: relative;
- height: calc(100% - 3.56rem);
- background-color: #fff;
- border-radius: 0; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list {
- padding: 0;
- margin: 0;
- list-style: none; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li {
- cursor: pointer;
- transition: all 0.2s, border-color 0s;
- position: relative;
- padding: 0.893rem 2rem; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li:not(:first-child) {
- border-top: 1px solid #ebe9f1; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li:hover {
- transform: translateY(-4px);
- box-shadow: 0 3px 10px 0 #ebe9f1;
- transition: all 0.2s; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-title-wrapper {
- display: flex;
- justify-content: space-between; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-title-area,
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .title-wrapper {
- display: flex;
- align-items: center; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action {
- display: flex;
- align-items: center; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action > small {
- margin-left: auto; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .todo-item-action a {
- cursor: pointer;
- font-size: 1.2rem;
- line-height: 1.5; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .badge-wrapper {
- display: flex; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .todo-task-list li .badge-wrapper .badge:not(:last-child) {
- margin-right: 0.5rem; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .no-results {
- display: none;
- padding: 1.5rem;
- text-align: center; }
- .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper .no-results.show {
- display: block; }
- .todo-application .todo-item .drag-icon {
- visibility: hidden;
- cursor: move;
- position: absolute;
- left: 0.2rem;
- width: 1.75rem;
- height: 4rem;
- padding: 0 5px; }
- .todo-application .todo-item:hover .drag-icon {
- visibility: visible; }
- .todo-application form .error:not(li):not(input) {
- color: #ea5455;
- font-size: 85%;
- margin-top: 0.25rem; }
- .gu-mirror {
- list-style-type: none;
- list-style: none;
- padding: 0.893rem 2rem;
- background-color: #fff;
- border-top: 1px solid #ebe9f1;
- border-bottom: 1px solid #ebe9f1;
- box-shadow: 0 0 10px 0 rgba(34, 41, 47, 0.25); }
- .gu-mirror .todo-title-wrapper {
- display: flex;
- justify-content: space-between; }
- .gu-mirror .todo-title-area,
- .gu-mirror .title-wrapper {
- display: flex;
- align-items: center; }
- .gu-mirror .todo-item-action {
- display: flex;
- align-items: center;
- justify-content: space-between; }
- .gu-mirror .todo-title {
- padding-left: 1rem; }
- .gu-mirror.completed .todo-title {
- color: #b9b9c3; }
- @-webkit-keyframes fadeIn {
- 0% {
- opacity: 0;
- top: 100px; }
- 75% {
- opacity: 0.5;
- top: 0px; }
- 100% {
- opacity: 1; } }
- @media (max-width: 991.98px) {
- .todo-application .content-area-wrapper .sidebar-left .todo-sidebar {
- transform: translateX(-110%);
- transition: all 0.3s ease-in-out;
- left: 0;
- position: absolute;
- z-index: 5;
- border-top-left-radius: 0.25rem;
- border-bottom-left-radius: 0.25rem; }
- .todo-application .content-area-wrapper .sidebar-left.show .todo-sidebar {
- transform: translateX(0%);
- transition: all 0.3s ease; }
- .todo-application .content-area-wrapper .content-right {
- width: 100%;
- border-left: 0; }
- .todo-application .content-area-wrapper .content-right .app-fixed-search {
- border-top-left-radius: 0.357rem; }
- .todo-application .content-area-wrapper .todo-title-wrapper {
- flex-direction: column; }
- .todo-application .content-area-wrapper .todo-title-wrapper .title-wrapper {
- margin-bottom: 0.5rem; }
- .todo-application .content-area-wrapper .todo-title-wrapper .todo-title {
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- overflow: hidden; }
- .todo-application .content-area-wrapper .todo-title-wrapper .badge-wrapper {
- margin-right: auto !important; } }
- @media (max-width: 349.98px) {
- .todo-application .content-area-wrapper .sidebar .todo-sidebar {
- width: 230px; } }
- .horizontal-menu .todo-application .content-area-wrapper .content-right .todo-task-list-wrapper {
- height: calc(100% - 3.6rem); }
|