forked from mirrors/bookwyrm
Styles for the thread page
This commit is contained in:
parent
f901806574
commit
29ee99c03e
3 changed files with 21 additions and 2 deletions
|
@ -13,7 +13,7 @@ VERSION = "0.0.1"
|
||||||
PAGE_LENGTH = env("PAGE_LENGTH", 15)
|
PAGE_LENGTH = env("PAGE_LENGTH", 15)
|
||||||
DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English")
|
DEFAULT_LANGUAGE = env("DEFAULT_LANGUAGE", "English")
|
||||||
|
|
||||||
JS_CACHE = "e2bc0653"
|
JS_CACHE = "c02929b1"
|
||||||
|
|
||||||
# email
|
# email
|
||||||
EMAIL_BACKEND = env("EMAIL_BACKEND", "django.core.mail.backends.smtp.EmailBackend")
|
EMAIL_BACKEND = env("EMAIL_BACKEND", "django.core.mail.backends.smtp.EmailBackend")
|
||||||
|
|
|
@ -492,6 +492,21 @@ ol.ordered-list li::before {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Threads
|
||||||
|
******************************************************************************/
|
||||||
|
.thread .is-main .card {
|
||||||
|
box-shadow: 0 0.5em 1em -0.125em rgb(50 115 220 / 35%), 0 0 0 1px rgb(50 115 220 / 2%);
|
||||||
|
}
|
||||||
|
.thread:after {
|
||||||
|
content:"";
|
||||||
|
position: absolute;
|
||||||
|
z-index: -1;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 2.5em;
|
||||||
|
border-left: 2px solid #e0e0e0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Dimensions
|
/* Dimensions
|
||||||
* @todo These could be in rem.
|
* @todo These could be in rem.
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
{% load status_display %}
|
{% load status_display %}
|
||||||
|
|
||||||
|
<div class="thread-parent is-relative block">
|
||||||
|
<div class="thread">
|
||||||
{% with depth=depth|add:1 %}
|
{% with depth=depth|add:1 %}
|
||||||
{% if depth <= max_depth and status.reply_parent and direction <= 0 %}
|
{% if depth <= max_depth and status.reply_parent and direction <= 0 %}
|
||||||
{% with direction=-1 %}
|
{% with direction=-1 %}
|
||||||
|
@ -7,7 +9,7 @@
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div{% if is_root %} class="block mt-5"{% endif %}>
|
<div{% if is_root %} class="block mt-5 is-main"{% endif %}>
|
||||||
{% include 'snippets/status/status.html' with status=status main=is_root %}
|
{% include 'snippets/status/status.html' with status=status main=is_root %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -19,3 +21,5 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue