diff --git a/templates/new_edit_regex_host.html b/templates/new_edit_regex_host.html index 7ca3cf3..f7b9438 100644 --- a/templates/new_edit_regex_host.html +++ b/templates/new_edit_regex_host.html @@ -7,6 +7,25 @@ max-width: 300px; text-align: left; } + + /* Tryb jasny */ + .regex-container, .example-container { + background-color: var(--bg-light); + color: var(--text-dark); + } + + /* Tryb ciemny */ + @media (prefers-color-scheme: dark) { + .regex-container, .example-container { + background-color: var(--bg-dark); + color: var(--text-light); + border-color: var(--border-color); + } + } + + .icon-green { + color: #28a745; + } {% endblock %} {% block content %} @@ -45,12 +64,91 @@
+
+
+ +
+ +
+ + +
+
    +
    +
    +
    +
    Lista Regex Hosts
    {% endblock %} +{% block extra_js %} +{{ super() }} + +{% endblock %} + +