Misc cleanup

This commit is contained in:
Jeremy Stretch 2024-08-01 20:48:53 -04:00
parent c6ff601b85
commit 784b7ec504
5 changed files with 5 additions and 5 deletions

Binary file not shown.

View File

@ -23,7 +23,7 @@ $hover-bg: rgba(var(--tblr-secondary-rgb), 0.08);
// Ensure active nav-pill has a background color in dark mode
$nav-pills-link-active-bg: rgba(var(--tblr-secondary-rgb), 0.15);
// Colors
// Brand colors
$rich-black: #001423;
$rich-black-light: #081B2A;
$rich-black-lighter: #0D202E;

View File

@ -4,10 +4,10 @@ form.object-edit {
max-width: 800px;
}
// Use <h4> style for field group headings
// Use <h3> style for field group headings
.field-group {
h2 {
@extend h4;
@extend h3;
}
}

View File

@ -11,7 +11,7 @@
<a href="{% url 'dcim:rack_list' %}{% querystring request %}" class="btn btn-primary">
<i class="mdi mdi-format-list-checkbox"></i> {% trans "View List" %}
</a>
<select class="btn btn-outline-secondary no-ts rack-view" aria-label="Select rack view">
<select class="btn btn-outline-secondary no-ts rack-view" aria-label="{% trans "Select rack view" %}">
<option value="images-and-labels" selected="selected">{% trans "Images and Labels" %}</option>
<option value="images-only">{% trans "Images only" %}</option>
<option value="labels-only">{% trans "Labels only" %}</option>

View File

@ -3,7 +3,7 @@
<div class="field-group mb-5">
{% if heading %}
<div class="row">
<h2 class="h5 col-9 offset-3">{{ heading }}</h2>
<h2 class="col-9 offset-3">{{ heading }}</h2>
</div>
{% endif %}
{% for layout, title, items in rows %}