mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-12 23:07:06 +00:00
Fix overflow in settings page (#805)
This commit is contained in:
parent
7d4e65976f
commit
0fe6304328
3 changed files with 11 additions and 3 deletions
|
@ -7,8 +7,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea.custom-css {
|
textarea.monospace {
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group > input[type=submit] {
|
.input-group > input[type=submit] {
|
||||||
|
|
|
@ -195,3 +195,10 @@ ul.menu li:first-child {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide tooltips on mobile
|
||||||
|
@media (pointer:coarse) {
|
||||||
|
.tooltip::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -123,7 +123,7 @@
|
||||||
<summary>Auto Tagging</summary>
|
<summary>Auto Tagging</summary>
|
||||||
<label for="{{ form.auto_tagging_rules.id_for_label }}" class="text-assistive">Auto Tagging</label>
|
<label for="{{ form.auto_tagging_rules.id_for_label }}" class="text-assistive">Auto Tagging</label>
|
||||||
<div class="mt-2">
|
<div class="mt-2">
|
||||||
{{ form.auto_tagging_rules|add_class:"form-input custom-css"|attr:"rows:6" }}
|
{{ form.auto_tagging_rules|add_class:"form-input monospace"|attr:"rows:6" }}
|
||||||
</div>
|
</div>
|
||||||
</details>
|
</details>
|
||||||
<div class="form-input-hint">
|
<div class="form-input-hint">
|
||||||
|
@ -225,7 +225,7 @@ reddit.com/r/Music music reddit</pre>
|
||||||
<summary>Custom CSS</summary>
|
<summary>Custom CSS</summary>
|
||||||
<label for="{{ form.custom_css.id_for_label }}" class="text-assistive">Custom CSS</label>
|
<label for="{{ form.custom_css.id_for_label }}" class="text-assistive">Custom CSS</label>
|
||||||
<div class="mt-2">
|
<div class="mt-2">
|
||||||
{{ form.custom_css|add_class:"form-input custom-css"|attr:"rows:6" }}
|
{{ form.custom_css|add_class:"form-input monospace"|attr:"rows:6" }}
|
||||||
</div>
|
</div>
|
||||||
</details>
|
</details>
|
||||||
<div class="form-input-hint">
|
<div class="form-input-hint">
|
||||||
|
|
Loading…
Reference in a new issue