generator-rrrw
Version:
react,redux,react-redux-router,webpack,babel,es6,autoprefixer,HMR,css-module
150 lines (126 loc) • 2.77 kB
text/less
.main {
position: relative;
z-index: 2;
border-top: 1px solid #e6e6e6;
}
.normal {
margin: 0;
padding: 0;
list-style: none;
}
.normal li {
position: relative;
font-size: 24px;
border-bottom: 1px solid #ededed;
}
.normal li:last-child {
border-bottom: none;
}
.normal li.editing {
border-bottom: none;
padding: 0;
}
.normal li.editing .edit {
display: block;
width: 506px;
padding: 13px 17px 12px 17px;
margin: 0 0 0 43px;
}
.normal li.editing .view {
display: none;
}
.normal li .toggle {
text-align: center;
width: 40px;
/* auto, since non-WebKit browsers doesn't support input styling */
height: auto;
position: absolute;
top: 0;
bottom: 0;
margin: auto 0;
border: none; /* Mobile Safari */
appearance: none;
}
.normal li .toggle:after {
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#ededed" stroke-width="3"/></svg>');
}
.normal li .toggle:checked:after {
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#bddad5" stroke-width="3"/><path fill="#5dc2af" d="M72 25L42 71 27 56l-4 4 20 20 34-52z"/></svg>');
}
.normal li label {
white-space: pre-line;
word-break: break-all;
padding: 15px 60px 15px 15px;
margin-left: 45px;
display: block;
line-height: 1.2;
transition: color 0.4s;
}
.normal li.completed label {
color: #d9d9d9;
text-decoration: line-through;
}
.normal li .destroy {
display: none;
position: absolute;
top: 0;
right: 10px;
bottom: 0;
width: 40px;
height: 40px;
margin: auto 0;
font-size: 30px;
color: #cc9a9a;
margin-bottom: 11px;
transition: color 0.2s ease-out;
}
.normal li .destroy:hover {
color: #af5b5e;
}
.normal li .destroy:after {
content: '×';
}
.normal li:hover .destroy {
display: block;
}
.normal li .edit {
display: none;
}
.normal li.editing:last-child {
margin-bottom: -1px;
}
.toggleAll {
position: absolute;
top: -55px;
left: -12px;
width: 60px;
height: 34px;
text-align: center;
border: none; /* Mobile Safari */
}
.toggleAll:before {
content: '❯';
font-size: 22px;
color: #e6e6e6;
padding: 10px 27px 10px 27px;
}
.toggleAll:checked:before {
color: #737373;
}
/*
Hack to remove background from Mobile Safari.
Can't use it globally since it destroys checkboxes in Firefox
*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
.toggleAll,
.normal li .toggle {
background: none;
}
.normal li .toggle {
height: 40px;
}
.toggleAll {
transform: rotate(90deg);
appearance: none;
}
}