Skip to content

Luke

My feedback

2 results found

  1. 4 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    3 comments  ·  General  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Luke commented  · 

    Agreed, and using tags like #now, #soon, #someday, or dates like @11/19 also means that those items will show up in the "Agenda" view, which is one of Moo.do's killer features as a task management tool.

    Also, there's a "star" feature that I didn't know about for a long time, which changes the background color to a yellowish highlight to make it stand out in another way.

  2. 50 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    4 comments  ·  General  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Luke commented  · 

    Update to previous comment: somehow I posted an in-progress version of the Stylish style and not the completed version. Here it is. This one shows the current pane header at the top; if you want to remove it, just change .paneHeaderRow2 in the first line to .paneHeader and the .paneScroller top value from 36px to 0px.

    @media print {
    #desktopMenu, .paneHeaderRow2, .itemCheckbox, .fancyButton {
    display: none !important;
    }
    #panes {
    left: 0 !important;
    }
    .pane {
    transform: none !important;
    width: auto !important;
    border: none !important;
    }
    .paneScroller {
    top: 36px !important;
    }
    .paneHeader {
    background: white !important;
    }
    }

    An error occurred while saving the comment
    Luke commented  · 

    Another vote for this. As a workaround, I made a Stylish style that applies print-friendly styles when printing. Only prints the first visible pane. Here are the styles:

    <code>
    @media print {
    #desktopMenu,
    .paneHeader,
    .itemCheckbox {
    display: none !important;
    }
    #panes {
    left: 0 !important;
    }
    #pane {
    transform: 0 !important;
    width: auto;
    }
    .paneScroller {
    top: 0 !important;
    }
    }
    </code>

Feedback and Knowledge Base