more appreciable strike through line on closed tasks

This commit is contained in:
mrliptontea
2015-04-14 11:46:45 +02:00
parent 0d97c6c930
commit fbae203298
3 changed files with 14 additions and 3 deletions

View File

@@ -52,6 +52,10 @@ Regrettably, optional file include is not possible in SASS, so I would recommend
## Changelog
v1.4.1 (2015-04-14):
* Fixed #3: Closed tasks will be more appreciable.
v1.4.0 (2015-04-10):
+ Introduced option `$wiki-page-more-vertical-space` (by default `true`) to improve wiki pages' readability even more

View File

@@ -144,11 +144,18 @@
&:after {
display: block;
position: absolute;
top: 50%;
right: 5px;
bottom: 0;
left: 5px;
border-top: 1px solid rgba($color, .35);
height: calc(50% - 2px/2);
border-top: 2px solid rgba($color, .95);
content: "";
@include rotate(-4deg);
@include transition(border-color .1s);
}
&:hover:after {
border-top-color: rgba($color, .25);
}
}
}

File diff suppressed because one or more lines are too long