diff --git a/lnbits/core/templates/admin/_tab_exchange_providers.html b/lnbits/core/templates/admin/_tab_exchange_providers.html index 7c366884..3d391f2d 100644 --- a/lnbits/core/templates/admin/_tab_exchange_providers.html +++ b/lnbits/core/templates/admin/_tab_exchange_providers.html @@ -4,7 +4,7 @@
-
+
+
- - - - +
+ + + + +
  • API URL and JSON Path fields can use the diff --git a/lnbits/core/templates/admin/_tab_security.html b/lnbits/core/templates/admin/_tab_security.html index dd6ff499..d99023a0 100644 --- a/lnbits/core/templates/admin/_tab_security.html +++ b/lnbits/core/templates/admin/_tab_security.html @@ -2,7 +2,7 @@
    -
    +

    -
    +
    -
    +
    @@ -79,7 +80,7 @@ Google Auth
    -
    +
    -
    +
    GitHub Auth
    -
    +
    -
    +
    Keycloak Auth
    -
    +
    -
    +
    -
    +
    -
    +
    -
    +

    -
    +

    -
    +

    -
    +
    -
    +
    - + + + + + + + + + + + + + + + + + + + + + + {% include "admin/_tab_funding.html" %} {% include + "admin/_tab_users.html" %} {% include "admin/_tab_server.html" %} {% + include "admin/_tab_exchange_providers.html" %}{% include + "admin/_tab_fiat_providers.html" %} {% include + "admin/_tab_extensions.html" %} {% include + "admin/_tab_notifications.html" %} {% include + "admin/_tab_security.html" %} {% include "admin/_tab_theme.html" + %}{% include "admin/_tab_audit.html"%}{% include + "admin/_tab_library.html"%} + + +
    diff --git a/lnbits/templates/base.html b/lnbits/templates/base.html index e6844fe0..fdab1ea3 100644 --- a/lnbits/templates/base.html +++ b/lnbits/templates/base.html @@ -23,6 +23,57 @@ .wallet-list-card:first-child { margin-left: 1px; } + /* Force chip content to wrap on mobile */ + @media (max-width: 1023px) { + .q-chip { + height: auto !important; + min-height: 2rem !important; + } + .q-chip .q-chip__content { + white-space: normal !important; + word-break: break-all !important; + min-height: 1.5rem !important; + height: auto !important; + } + .q-chip .ellipsis { + overflow: visible !important; + text-overflow: clip !important; + white-space: normal !important; + word-break: break-all !important; + } + /* Fix q-input hint text wrapping and container growth */ + .q-field { + overflow: visible !important; + height: auto !important; + min-height: 56px !important; + } + .q-field__inner { + overflow: visible !important; + height: auto !important; + } + .q-field__control { + overflow: visible !important; + height: auto !important; + } + .q-field__bottom { + position: relative !important; + transform: none !important; + max-height: none !important; + overflow: visible !important; + height: auto !important; + margin-bottom: 8px !important; + } + .q-field__messages { + min-height: auto !important; + } + .q-field__messages, + .q-field__messages > div { + white-space: normal !important; + word-wrap: break-word !important; + overflow-wrap: break-word !important; + word-break: break-word !important; + } + } {% block title %}{{ SITE_TITLE }}{% endblock %}