Download raw body.
got patch: minor mobile styling and layout cleanup
Just some minor changes to the core gotweb.css file. Includes `flex-end` for cleaner layout on mobile if certain rows are missing (owner, last commit etc). Also removes the unwanted bold and underline from the #index_header. diff --git a/gotwebd/files/htdocs/gotwebd/gotweb.css b/gotwebd/files/htdocs/gotwebd/gotweb.css index 00353393..3f881e90 100755 --- a/gotwebd/files/htdocs/gotwebd/gotweb.css +++ b/gotwebd/files/htdocs/gotwebd/gotweb.css @@ -272,9 +272,11 @@ header.subtitle h2 { overflow: hidden; vertical-align: middle; } +.index_wrapper .index_project { + font-weight: bold; +} .index_project { width: 20%; - font-weight: bold; text-decoration: underline; } .index_project_description { @@ -460,6 +462,7 @@ dd { .index_wrapper { display: flex; flex-wrap: wrap; + justify-content: flex-end; } .index_wrapper .index_project, .index_wrapper .index_project_description {
got patch: minor mobile styling and layout cleanup