Skip to content

xivtodo compact by Michcioperz

Screenshot of xivtodo compact

Details

AuthorMichcioperz

LicenseCC Zero

Categoryxivtodo

Created

Updated

Size755 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

hide ticked boxes and reflow rows in a slightly ugly way but it makes it easier to focus on what's actually todo

Notes

  • in firefox :has is still not officially supported as of nov 2023 so you need to enable layout.css.has-selector.enabled in config
  • it breaks the profile page and settings page badly, oh well

Source code

/* ==UserStyle==
@name         xivtodo compact
@version      20231102.14.35
@namespace    ?
==/UserStyle== */

@-moz-document domain("xivtodo.com") {
.list-group-item:has(.fa-badge-check) {
    display: none !important;
}

.container {
    .row {
        padding-bottom: 3em;
        display: block;
        columns: 1;
        > h2 {
            column-span: all;
            padding-bottom: 0.5em;
        }
        .col-12 {
            display: contents;
            > .list-group {
                break-inside: avoid;
            }
        }
    }
}

@media (min-width: 768px) {
    .container .row {
        columns: 2;
    }
}

@media (min-width: 992px) {
    .container .row {
        columns: 3;
    }
}
}

Reviews

No reviews yet.