2016-08-13 03:06:35 +03:00
|
|
|
.raw,
|
|
|
|
|
.text {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-13 20:02:16 +03:00
|
|
|
.item.checked {
|
|
|
|
|
opacity: 0.3;
|
|
|
|
|
}
|
|
|
|
|
.item.checked:hover {
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
2016-08-13 19:43:53 +03:00
|
|
|
.item.checked .item-content * {
|
2016-08-13 20:02:16 +03:00
|
|
|
text-decoration: line-through;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button {
|
2016-08-13 20:02:16 +03:00
|
|
|
text-decoration: none;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
.button:last-child {
|
2016-08-13 20:02:16 +03:00
|
|
|
margin-right: 5px;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.separator~* {
|
2016-08-13 20:02:16 +03:00
|
|
|
float: right;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item:hover {
|
2016-08-13 20:02:16 +03:00
|
|
|
background-color: rgba(0, 0, 0, 0.05);
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
.item .button {
|
2016-08-13 20:02:16 +03:00
|
|
|
display: none;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
.item:hover .button {
|
2016-08-13 20:02:16 +03:00
|
|
|
display: inline-block;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sort-handle {
|
2016-08-13 20:02:16 +03:00
|
|
|
opacity: 0.1;
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
padding-right: 5px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-decoration: none;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
.item:hover .sort-handle {
|
2016-08-13 20:02:16 +03:00
|
|
|
opacity: 0.3;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
|
|
|
|
.sort-placeholder {
|
2016-08-13 20:02:16 +03:00
|
|
|
display: block;
|
2016-08-13 03:06:35 +03:00
|
|
|
}
|
2016-08-13 19:43:53 +03:00
|
|
|
|
|
|
|
|
/* vim:set ts=4 sw=4 ft=css : */
|