Divides the css into sub-files and normalizes how colors are defined.

Co-authored-by: Joachim <joachim.robert@protonmail.com>
This commit is contained in:
Mouse Reeve
2022-02-19 16:34:17 -08:00
committed by GitHub
parent 6daaffeaa7
commit c77e5a1a90
54 changed files with 1670 additions and 1524 deletions

View File

@ -87,7 +87,7 @@
<div class="block content">
<h2>{% trans "Instance Activity" %}</h2>
<form method="get" action="{% url 'settings-dashboard' %}" class="notification has-background-white-bis scroll-x">
<form method="get" action="{% url 'settings-dashboard' %}" class="notification has-background-tertiary scroll-x">
<div class="is-flex is-align-items-flex-end">
<div class="ml-1 mr-1">
<label class="label" for="id_start">

View File

@ -4,7 +4,7 @@
{% load utilities %}
{% block card-header %}
<h2 class="card-header-title has-background-white-ter is-block">
<h2 class="card-header-title has-background-secondary is-block">
<a href="{% url 'settings-report' report.id %}">
{% include "settings/reports/report_header.html" with report=report %}
</a>

View File

@ -8,7 +8,7 @@
<div class="box is-flex-grow-1">
{% include 'user/user_preview.html' with user=user %}
{% if user.summary %}
<div class="box content has-background-white-ter is-shadowless">
<div class="box content has-background-secondary is-shadowless">
{{ user.summary|to_markdown|safe }}
</div>
{% endif %}
@ -108,7 +108,7 @@
</dl>
{% if server.notes %}
<h5>{% trans "Notes" %}</h5>
<div class="box content has-background-white-ter is-shadowless">
<div class="box content has-background-secondary is-shadowless">
{{ server.notes }}
</div>
{% endif %}