Commit c01a65737dd31fc14cb2345f00be5380734456e1
1 parent
a025d4df
Exists in
master
and in
3 other branches
Adjusting topic background color
Showing
2 changed files
with
6 additions
and
2 deletions
Show diff stats
amadeus/static/css/themes/green.css
... | ... | @@ -63,6 +63,10 @@ a, a:focus, a:hover { |
63 | 63 | background-color: #7BA5B9 !important; |
64 | 64 | } |
65 | 65 | |
66 | +.topic-panel > .category-panel-content, .topic-panel-invisible > .category-panel-content { | |
67 | + background: #FFFFFF; | |
68 | +} | |
69 | + | |
66 | 70 | .topic-panel-invisible > .panel-heading { |
67 | 71 | background-color: #BDBDBD !important; |
68 | 72 | color: #F5F5F5; | ... | ... |
topics/templates/topics/list.html
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | |
10 | 10 | {% for topic in subject.topic_subject.all %} |
11 | 11 | {% if not topic.repository and topic.visible or has_subject_permissions %} |
12 | - <div class="panel panel-info {% if not topic.visible or topic.repository %} topic-panel-invisible {% else %} topic-panel {% endif %} topic-panel"> | |
12 | + <div class="panel panel-info {% if not topic.visible or topic.repository %} topic-panel-invisible {% else %} topic-panel {% endif %}"> | |
13 | 13 | <div class="panel-heading"> |
14 | 14 | <div class="row"> |
15 | 15 | <div class="col-md-12 category-header"> |
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | <input type="hidden" class="order_inp" name="order" value="{{ topic.order }}" /> |
40 | 40 | |
41 | 41 | {% autoescape off %} |
42 | - {{ topic.description|default:_("Not Informed") }} | |
42 | + {{ topic.description }} | |
43 | 43 | {% endautoescape %} |
44 | 44 | </div> |
45 | 45 | </div> | ... | ... |