diff --git a/client/app/assets/less/inc/contacts.less b/client/app/assets/less/inc/contacts.less deleted file mode 100755 index a8f53bd0d..000000000 --- a/client/app/assets/less/inc/contacts.less +++ /dev/null @@ -1,75 +0,0 @@ -.contacts { - &:not(.c-profile) { - padding: 0 3px; - } - - & > [class*="col-"] { - padding: 0 10px; - } - - .c-item { - border: 1px solid #e2e2e2; - border-radius: 2px; - margin-bottom: 24px; - - .ci-avatar { - display: block; - - img { - width: 100%; - border-radius: 2px 2px 0 0; - } - } - } - - .ci-avatar { - margin: -1px -1px 0; - } - - .c-info { - text-align: center; - margin-top: 15px; - padding: 0 5px; - - strong { - color: #000; - font-size: 14px; - font-weight: 500; - } - - small { - color: #999; - margin-top: 3px; - } - - strong, - small { - .text-overflow(); - display: block; - } - } - - .c-footer { - border-top: 1px solid #e2e2e2; - margin-top: 18px; - - & > button { - padding: 4px 10px 3px; - color: #333; - display: block; - width: 100%; - text-align: center; - color: #333; - font-weight: 500; - border-radius: 2px; - background: #fff; - border: 0; - - & > i { - font-size: 16px; - vertical-align: middle; - margin-top: -3px; - } - } - } -} \ No newline at end of file diff --git a/client/app/assets/less/inc/todo-list.less b/client/app/assets/less/inc/todo-list.less deleted file mode 100755 index 75eec15f6..000000000 --- a/client/app/assets/less/inc/todo-list.less +++ /dev/null @@ -1,48 +0,0 @@ -.todo-lists { - padding: 15px 0 0 0; - position: relative; - - .list-group-item { - margin: 0; - min-height: 36px; - - - &:not(:last-child) { - border-bottom: 1px solid #E2EBFF; - } - } - - &:before { - content: ""; - position: absolute; - top: 0; - background: #E2EBFF; - left: 50px; - width: 1px; - height: 100%; - z-index: 1; - } - - .input-helper:before { - background: lighten(@red, 10%) !important; - } -} - -.tl-item { - padding-left: 47px !important; - - input:checked + .input-helper + span { - text-decoration: line-through; - color: #b5b5b5; - } -} - -.todo-footer { - padding: 10px; - margin-top: 20px; - border-top: 1px solid #E2EBFF; - text-align: center; - position: relative; - z-index: 2; - background: #fff; -}