mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-18 21:03:41 -05:00
add some comments
This commit is contained in:
parent
a114f36ce7
commit
1631dbead0
1 changed files with 4 additions and 1 deletions
|
@ -14,6 +14,7 @@
|
|||
{% if cfg.style.tintColors %}
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/tinted.css') }}">
|
||||
{% endif %}
|
||||
<!-- variable styles depending on used font and accent color -->
|
||||
<style>
|
||||
{% if cfg.accessibility.font == 'default' %}
|
||||
@font-face {
|
||||
|
@ -111,12 +112,13 @@
|
|||
</style>
|
||||
{% endif %}
|
||||
{% if cfg.style.customCss and cfg.style.useCustomCss %}
|
||||
<!-- custom css -->
|
||||
<style>
|
||||
{{ cfg.style.customCss | safe }}
|
||||
</style>
|
||||
{% endif %}
|
||||
<!-- some essential styles so 3rd-party themes don't break -->
|
||||
<style>
|
||||
/* some essential styles so 3rd-party themes don't break */
|
||||
footer .icon-link, footer .icon-link i {
|
||||
display: flex;
|
||||
}
|
||||
|
@ -193,6 +195,7 @@
|
|||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap-icons.min.css') }}">
|
||||
{%- if cfg.accessibility.font == 'default' -%}
|
||||
<link rel="preload" href="{{ url_for('static', filename='fonts/rubik.woff2') }}" as="font" type="font/woff2" crossorigin>
|
||||
|
|
Loading…
Add table
Reference in a new issue