udemy-go-web-1/static/admin/scss/components/_todo-list.scss

87 lines
1.5 KiB
SCSS

/* Tabs */
.add-items {
margin-bottom: 1.5rem;
overflow: hidden;
input[type="text"] {
width: 100%;
background: transparent;
@include placeholder {
font-size: 1rem;
color: #9b9b9b;
}
}
.btn {
margin-left: .5rem;
i {
font-size: 2.25rem;
}
.rtl & {
margin-left: auto;
margin-right: .5rem;
}
}
}
.list-wrapper {
height: 100%;
max-height: 361px;
overflow: scroll;
ul {
padding: 0;
text-align: left;
list-style: none;
margin-bottom: 0;
li {
@extend .d-flex;
@extend .align-items-center;
@extend .justify-content-start;
font-size: .9375rem;
padding: 1.063rem 0rem;
border-bottom: 1px solid $border-color;
.form-check{
@extend %ellipsor;
max-width: 90%;
margin-top: .25rem;
margin-bottom: .25rem;
.form-check-label{
@extend%ellipsor;
}
}
}
}
input[type="checkbox"] {
margin-right: 15px;
}
.remove {
@extend .ms-auto;
@extend .text-secondary;
.rtl & {
@extend .ms-0;
@extend .me-auto;
}
cursor: pointer;
font-size: 1.1rem;
font-weight: 600;
width: 1.25rem;
height: 1.25rem;
line-height: 1.25rem;
text-align: center;
&:hover {
@extend .text-danger;
}
}
.completed {
.form-check {
text-decoration: line-through;
text-decoration-color: $black;
}
.remove {
@extend .text-primary;
}
}
}