From faf0650a5ccc44dee532a0d6e2aca0a4726ad78f Mon Sep 17 00:00:00 2001 From: Rahix Date: Wed, 11 Mar 2026 21:34:50 +0100 Subject: [PATCH 1/4] [FAFO] Limit width of content to 100em on large screens We don't want to stretch the content too wide, this makes text harder to read. --- css/base_design.less | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/base_design.less b/css/base_design.less index 560e5eb..7c4f24b 100755 --- a/css/base_design.less +++ b/css/base_design.less @@ -24,6 +24,15 @@ html, body { font-weight: bold; } +body > div.dokuwiki { + position: relative; + margin: auto; + + @media @screen_min-xlg { + max-width: 100em; + } +} + .dokuwiki { .page ol li, .page ul li, From faf0674a37d363c93cd582676b9b4a6aa392c396 Mon Sep 17 00:00:00 2001 From: Rahix Date: Thu, 12 Mar 2026 00:10:42 +0100 Subject: [PATCH 2/4] [FAFO] Disable button transition animations --- css/base.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/base.less b/css/base.less index ca77f34..ce89f98 100755 --- a/css/base.less +++ b/css/base.less @@ -27,7 +27,7 @@ @grid: @margin-small; @toggle-size: 1.75rem; -@transition: ease-out .30s; +@transition: none; @box-shadow-offset: .1em .1em .1em rgba(153,153,153,.5); // tabinclude @box-shadow: 0 0 .5em rgba(153,153,153,.5); // pagetoolbox hover From faf0a311509a375bda7fdf6881ce1453af036fb8 Mon Sep 17 00:00:00 2001 From: Rahix Date: Thu, 12 Mar 2026 00:11:47 +0100 Subject: [PATCH 3/4] [FAFO] Fix menu text color not having enough contrast With the background image, we need to make the text a bit darker for contrast. --- style.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.ini b/style.ini index 93e0977..4ff8759 100755 --- a/style.ini +++ b/style.ini @@ -150,7 +150,7 @@ __text_webframe__ = "#696969" ; @ini_text_webframe ; icons: usertools, pagetools, metabox, tabbox -__nav_menu_color__ = "#696969" ; @ini_nav_menu_color +__nav_menu_color__ = "#494949" ; @ini_nav_menu_color __nav_menu_hover_color__ = "#286da8" ; @ini_nav_menu_hover_color __nav_menu_hover_bg__ = "#FFF" ; @ini_nav_menu_hover_bg From faf0aae445eed79d37439ac5547e9af20d251227 Mon Sep 17 00:00:00 2001 From: Rahix Date: Thu, 12 Mar 2026 00:13:00 +0100 Subject: [PATCH 4/4] [FAFO] Make buttons green instead of blue --- style.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.ini b/style.ini index 4ff8759..4e23b59 100755 --- a/style.ini +++ b/style.ini @@ -151,7 +151,7 @@ __text_webframe__ = "#696969" ; @ini_text_webframe ; icons: usertools, pagetools, metabox, tabbox __nav_menu_color__ = "#494949" ; @ini_nav_menu_color -__nav_menu_hover_color__ = "#286da8" ; @ini_nav_menu_hover_color +__nav_menu_hover_color__ = "#0faf00" ; @ini_nav_menu_hover_color __nav_menu_hover_bg__ = "#FFF" ; @ini_nav_menu_hover_bg __background__ = "#FFF" ; @ini_background (guaranteed for every plugin) @@ -178,7 +178,7 @@ __link__ = "#0faf00" ; @ini_link ; buttons: submit, links styled like buttons, togglebuttons __button_color__ = "#FFF" ; @ini_button_color -__button_background__ = "#286DA8" ; @ini_button_background +__button_background__ = "#86c880" ; @ini_button_background __background_alt__ = "#F6F6F6" ; @ini_background_alt (guaranteed for every plugin) __text_alt__ = "#454545" ; @ini_text_alt (guaranteed for every plugin)