diff --git a/src/web/pages/resources/common.css b/src/web/pages/resources/common.css index 068e0de33..1d532c27a 100644 --- a/src/web/pages/resources/common.css +++ b/src/web/pages/resources/common.css @@ -189,6 +189,12 @@ code { color: oklch(from var(--secondary) var(--name-lightness) c h); } +pre { + background-color: oklch(from var(--panel-bg) calc(l - 0.05) c h); + border-radius: var(--border-radius-sm); + padding: 8px; +} + input, button, a.button { display: inline-block; padding: 0.5em; @@ -254,6 +260,10 @@ h1 { margin-bottom: 0 !important; } +.select-all { + user-select: all; +} + @media (max-width: 425px) { main { padding-block-start: 2rem; diff --git a/src/web/pages/resources/error.css b/src/web/pages/resources/error.css index b7e25f9a3..11be79575 100644 --- a/src/web/pages/resources/error.css +++ b/src/web/pages/resources/error.css @@ -7,6 +7,7 @@ user-select: none; margin: 0; padding: 0; + background: none; } h1 { diff --git a/src/web/pages/templates/device_info.html.j2 b/src/web/pages/templates/device_info.html.j2 index 1500c7a39..afcf762e0 100644 --- a/src/web/pages/templates/device_info.html.j2 +++ b/src/web/pages/templates/device_info.html.j2 @@ -6,7 +6,7 @@ Device information {%- block content -%}
-

About Device Back

+

About device Back

{{ device_card }} {% if let Some((client_metadata, _)) = client_metadata %}
diff --git a/src/web/pages/templates/index.html.j2 b/src/web/pages/templates/index.html.j2 index 89f138831..cf0c97b0f 100644 --- a/src/web/pages/templates/index.html.j2 +++ b/src/web/pages/templates/index.html.j2 @@ -14,7 +14,7 @@

To get started, check the server logs for instructions on how to create the first account.

For support, take a look at the documentation or join the Continuwuity Matrix room.

{%- else %} -

To get started, choose a client and connect to {{ server_name }}.

+

To get started, choose a client and connect to {{ server_name }}.

Manage your account

{%- endif %}