updated documentation folder
This commit is contained in:
@@ -355,6 +355,100 @@
|
||||
background-color: #2a2a2a !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
/* Modal fixes for accessibility */
|
||||
.modal {
|
||||
z-index: 1050 !important;
|
||||
}
|
||||
|
||||
.modal-backdrop {
|
||||
z-index: 1040 !important;
|
||||
}
|
||||
|
||||
/* Theme-aware modal styling */
|
||||
body.light-mode .modal-content {
|
||||
background-color: #fff !important;
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
body.dark-mode .modal-content {
|
||||
background-color: #2a2a2a !important;
|
||||
color: #fff !important;
|
||||
border: 1px solid #444 !important;
|
||||
}
|
||||
|
||||
body.light-mode .modal-header {
|
||||
background-color: #f8f9fa !important;
|
||||
border-bottom: 1px solid #dee2e6 !important;
|
||||
}
|
||||
|
||||
body.dark-mode .modal-header {
|
||||
background-color: #1e1e1e !important;
|
||||
border-bottom: 1px solid #444 !important;
|
||||
}
|
||||
|
||||
body.light-mode .modal-title {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
body.dark-mode .modal-title {
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
body.light-mode .modal-body {
|
||||
background-color: #fff !important;
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
body.dark-mode .modal-body {
|
||||
background-color: #2a2a2a !important;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
body.light-mode .modal-footer {
|
||||
background-color: #f8f9fa !important;
|
||||
border-top: 1px solid #dee2e6 !important;
|
||||
}
|
||||
|
||||
body.dark-mode .modal-footer {
|
||||
background-color: #1e1e1e !important;
|
||||
border-top: 1px solid #444 !important;
|
||||
}
|
||||
|
||||
/* Modal form elements */
|
||||
body.light-mode .modal .form-control {
|
||||
background-color: #fff !important;
|
||||
color: #000 !important;
|
||||
border-color: #ced4da !important;
|
||||
}
|
||||
|
||||
body.dark-mode .modal .form-control {
|
||||
background-color: #1a1a1a !important;
|
||||
color: #fff !important;
|
||||
border-color: #444 !important;
|
||||
}
|
||||
|
||||
body.light-mode .modal label {
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
body.dark-mode .modal label {
|
||||
color: #ccc !important;
|
||||
}
|
||||
|
||||
/* Ensure modal is clickable and not greyed out */
|
||||
.modal.show {
|
||||
display: block !important;
|
||||
pointer-events: auto !important;
|
||||
}
|
||||
|
||||
.modal-dialog {
|
||||
pointer-events: auto !important;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
pointer-events: auto !important;
|
||||
}
|
||||
</style>
|
||||
{% endblock %}
|
||||
|
||||
@@ -408,6 +502,10 @@
|
||||
<input type="checkbox" id="module_labels" name="modules" value="labels">
|
||||
<label for="module_labels">Label Management</label>
|
||||
</div>
|
||||
<div class="module-checkbox">
|
||||
<input type="checkbox" id="module_daily_mirror" name="modules" value="daily_mirror">
|
||||
<label for="module_daily_mirror">Daily Mirror (BI & Reports)</label>
|
||||
</div>
|
||||
</div>
|
||||
<div id="accessLevelInfo" class="access-level-info" style="display: none;"></div>
|
||||
</div>
|
||||
@@ -454,6 +552,10 @@
|
||||
<input type="checkbox" id="quick_module_labels" name="quick_modules" value="labels">
|
||||
<label for="quick_module_labels">Label Management</label>
|
||||
</div>
|
||||
<div class="module-checkbox">
|
||||
<input type="checkbox" id="quick_module_daily_mirror" name="quick_modules" value="daily_mirror">
|
||||
<label for="quick_module_daily_mirror">Daily Mirror (BI & Reports)</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -621,6 +723,10 @@
|
||||
<input type="checkbox" id="edit_module_labels" name="modules" value="labels">
|
||||
<label for="edit_module_labels">Label Management</label>
|
||||
</div>
|
||||
<div class="module-checkbox">
|
||||
<input type="checkbox" id="edit_module_daily_mirror" name="modules" value="daily_mirror">
|
||||
<label for="edit_module_daily_mirror">Daily Mirror (BI & Reports)</label>
|
||||
</div>
|
||||
</div>
|
||||
<div id="editAccessLevelInfo" class="access-level-info" style="display: none;"></div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user