flatpressblog / flatpress

FlatPress is a lightweight, easy-to-set-up flat-file blogging engine.
https://flatpress.org
GNU General Public License v2.0
185 stars 57 forks source link

List items in Leggero-v2-style #136

Closed Fraenkiman closed 2 years ago

Fraenkiman commented 2 years ago

Hello, everyone.

Remove points from child lists when searching categories and error lists in Legero-v2 style.

listenpunkte

To do this, add the following lines from line 56 to the globals.css file:

div#errorlist ul.msgs.errors { list-style-type: none; }
div#errorlist ul.msgs.warnings { list-style-type: none; }
div#errorlist ul.msgs.notifications { list-style-type: none; }

In common.css, add the following lines in the “Class of main block” section from line 308 onwards:

    form#search fieldset ul { /* in Kategorien suchen */
        list-style-type: none;
    }

Best regards to the Ruhr Area Frank