new styles
This commit is contained in:
@@ -250,7 +250,7 @@ body {
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
background-color: #101823 !important;
|
||||
background-color: #121a25 !important;
|
||||
}
|
||||
.bg-info {
|
||||
--bs-bg-opacity: 1;
|
||||
@@ -305,6 +305,20 @@ body {
|
||||
color: var(--bs-table-color);
|
||||
border-color: var(--bs-table-border-color);
|
||||
}
|
||||
.table-secondary {
|
||||
--bs-table-color: #000;
|
||||
--bs-table-bg: #86b7fe;
|
||||
--bs-table-border-color: #b5b6b7;
|
||||
--bs-table-striped-bg: #d7d8da;
|
||||
--bs-table-striped-color: #000;
|
||||
--bs-table-active-bg: #cbccce;
|
||||
--bs-table-active-color: #000;
|
||||
--bs-table-hover-bg: #d1d2d4;
|
||||
--bs-table-hover-color: #000;
|
||||
color: var(--bs-table-color);
|
||||
border-color: var(--bs-table-border-color);
|
||||
}
|
||||
|
||||
|
||||
.list-group-item.bg-black,
|
||||
.list-group-item.bg-dark {
|
||||
|
||||
@@ -11,6 +11,27 @@
|
||||
Neues Profil anlegen
|
||||
</a>
|
||||
</div>
|
||||
{# ============================= #}
|
||||
{# Strukturstatus Alert #}
|
||||
{# ============================= #}
|
||||
|
||||
{% if structureMismatch %}
|
||||
<div class="alert alert-danger d-flex justify-content-between align-items-center mb-4">
|
||||
<div>
|
||||
<strong>Strukturabweichung erkannt.</strong>
|
||||
Die aktuelle Indexstruktur entspricht nicht dem aktiven Profil.
|
||||
Eine globale Neuindizierung ist erforderlich oder Sie haben kein indexiertes Dokument im System.
|
||||
</div>
|
||||
<a href="{{ path('admin_jobs') }}"
|
||||
class="btn btn-sm btn-outline-danger">
|
||||
Global Reindex starten
|
||||
</a>
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="alert alert-success">
|
||||
Die Indexstruktur entspricht dem aktiven Profil.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{# ========================================================= #}
|
||||
{# PROFIL SYSTEM DESCRIPTION #}
|
||||
@@ -54,28 +75,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{# ============================= #}
|
||||
{# Strukturstatus Alert #}
|
||||
{# ============================= #}
|
||||
|
||||
{% if structureMismatch %}
|
||||
<div class="alert alert-danger d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<strong>Strukturabweichung erkannt.</strong>
|
||||
Die aktuelle Indexstruktur entspricht nicht dem aktiven Profil.
|
||||
Eine globale Neuindizierung ist erforderlich oder Sie haben kein indexiertes Dokument im System.
|
||||
</div>
|
||||
<a href="{{ path('admin_jobs') }}"
|
||||
class="btn btn-sm btn-outline-danger">
|
||||
Global Reindex starten
|
||||
</a>
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="alert alert-success">
|
||||
Die Indexstruktur entspricht dem aktiven Profil.
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{# ============================= #}
|
||||
{# Profile Tabelle #}
|
||||
{# ============================= #}
|
||||
|
||||
@@ -8,6 +8,17 @@
|
||||
<h1 class="h3 mb-0">Tag-Management</h1>
|
||||
</div>
|
||||
|
||||
{# ========================================================= #}
|
||||
{# LIVE REBUILD STATUS (SSE) #}
|
||||
{# ========================================================= #}
|
||||
|
||||
<div id="rebuild-status">
|
||||
{% if latestJob %}
|
||||
<div class="alert alert-secondary shadow-sm">
|
||||
Status wird geladen…
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{# ========================================================= #}
|
||||
{# TAG SYSTEM DESCRIPTION #}
|
||||
{# ========================================================= #}
|
||||
@@ -65,18 +76,6 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{# ========================================================= #}
|
||||
{# LIVE REBUILD STATUS (SSE) #}
|
||||
{# ========================================================= #}
|
||||
|
||||
<div id="rebuild-status">
|
||||
{% if latestJob %}
|
||||
<div class="alert alert-secondary shadow-sm">
|
||||
Status wird geladen…
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const statusBox = document.getElementById('rebuild-status');
|
||||
const source = new EventSource("{{ path('admin_tags_rebuild_stream') }}");
|
||||
|
||||
Reference in New Issue
Block a user