Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show completed tasks? #2

Open
indieai opened this issue Nov 29, 2015 · 1 comment
Open

Show completed tasks? #2

indieai opened this issue Nov 29, 2015 · 1 comment

Comments

@indieai
Copy link

indieai commented Nov 29, 2015

In your documentation you said you could toggle on showing completed tasks. I'm a complete newbie to Jekyll, could you explain how to toggle this on or off? I like to see the progress and show tasks that have been completed already. Thanks.

@indieai indieai closed this as completed Nov 29, 2015
@indieai indieai reopened this Nov 29, 2015
@fdschneider
Copy link
Owner

Sorry for not responding earlier. Indeed the feature has been removed from the current version. The tasks that are marked as completed - [x] will automatically be invisible and there is currently no switch to make them visible again. I will have to fix this in the next update.

For now, you can easily avoid this behaviour by setting the css style for completed tasks. to do this, edit file _scss/_base.scss in line 361 by removing the lines max-height: 0; and overflow: hidden; :

      &.box_done {
        font-style: normal;
        font-size: $base-font-size * 1.2;
        color: $grey-color;
        text-decoration: line-through;
        max-height: 0;
        overflow: hidden;

        &:before {
          font: normal normal normal $base-font-size lablogIcons;
          padding-top: 0.5em;
          content: "\f046";
          color: $grey-color;
        }
      }

Then, completed tasks will be visible and clearly labelled as being completed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants