mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-28 08:26:29 +00:00
Fix input in dark theme
This commit is contained in:
parent
ad93717bac
commit
717195d3f5
2 changed files with 9 additions and 4 deletions
|
@ -59,7 +59,8 @@
|
||||||
#article article h5,
|
#article article h5,
|
||||||
#article article h6,
|
#article article h6,
|
||||||
.dropdown-content li > a,
|
.dropdown-content li > a,
|
||||||
.nav-panels .input-field input:focus,
|
.input-field input,
|
||||||
|
.input-field input:focus,
|
||||||
.results-item,
|
.results-item,
|
||||||
.sidenav li > a,
|
.sidenav li > a,
|
||||||
.sidenav li > a > i.material-icons {
|
.sidenav li > a > i.material-icons {
|
||||||
|
|
|
@ -22,9 +22,13 @@
|
||||||
<div id="set-{{ section }}" class="col s12">
|
<div id="set-{{ section }}" class="col s12">
|
||||||
{% for setting in form.settings %}
|
{% for setting in form.settings %}
|
||||||
{% if setting.vars.value.section == section %}
|
{% if setting.vars.value.section == section %}
|
||||||
|
<div class="row">
|
||||||
|
<div class="input-field col s12">
|
||||||
{{ form_row(setting.value, {
|
{{ form_row(setting.value, {
|
||||||
'label': setting.vars.value.name|trans({}, 'CraueConfigBundle'),
|
'label': setting.vars.value.name|trans({}, 'CraueConfigBundle'),
|
||||||
}) }}
|
}) }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue