Download raw body.
got patch: minor mobile styling and layout cleanup
Hello,
On 21/11/24 20:36, Bradley Taunt wrote:
> 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.
I forgot to reply, sorry. I've committed this, thanks!
> 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;
In a follow-up commit I've moved the text-decoration too.
> }
> .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