Skip to content

Tasks plugin dataview does not utilize full line length in Dashboard++ #31

Closed Answered by pplucky
pplucky asked this question in Q&A
Discussion options

You must be logged in to vote

Found myself the answer, so just wanted to share it:

dashboard.css has a property:

.dashboard div > ul > li {
    min-width: 250px;
    width: 15%;
}

which was causing this "issue", so I added a more-specific property for these task lists:

.dashboard div.block-language-tasks > div > ul.contains-task-list > li.task-list-item {
    min-width: 250px;
    width: 100%;
}

and now the resulting lines span accross the whole line length instead of wrapped

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by pplucky
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant