Commit 4375b994532674d3a0d59fbdf21f8797008faaa5

Authored by Miguel Barão
1 parent 5476b345
Exists in master and in 1 other branch dev

- changed maintopics template to show locked topics in gray background

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
templates/maintopics.html
... ... @@ -64,13 +64,13 @@
64 64 <div class="list-group">
65 65 {% for t in state %}
66 66 {% if t['level'] is None %}
67   - <a class="list-group-item list-group-item-action bg-light disabled">
  67 + <a class="list-group-item list-group-item-dark">
68 68 <div class="d-flex justify-content-start">
69   - <div class="p-2 font-italic text-muted">
70   - ({{ t['name'] }})
  69 + <div class="p-2 text-muted">
  70 + {{ t['name'] }}
71 71 </div>
72 72 <div class="ml-auto p-2">
73   - <i class="fas fa-lock text-danger"></i>
  73 + <i class="fas fa-lock text-muted"></i>
74 74 </div>
75 75 </div>
76 76 </a>
... ...