Commit c01a65737dd31fc14cb2345f00be5380734456e1

Authored by Zambom
1 parent a025d4df

Adjusting topic background color

amadeus/static/css/themes/green.css
@@ -63,6 +63,10 @@ a, a:focus, a:hover { @@ -63,6 +63,10 @@ a, a:focus, a:hover {
63 background-color: #7BA5B9 !important; 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 .topic-panel-invisible > .panel-heading { 70 .topic-panel-invisible > .panel-heading {
67 background-color: #BDBDBD !important; 71 background-color: #BDBDBD !important;
68 color: #F5F5F5; 72 color: #F5F5F5;
topics/templates/topics/list.html
@@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
9 9
10 {% for topic in subject.topic_subject.all %} 10 {% for topic in subject.topic_subject.all %}
11 {% if not topic.repository and topic.visible or has_subject_permissions %} 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 <div class="panel-heading"> 13 <div class="panel-heading">
14 <div class="row"> 14 <div class="row">
15 <div class="col-md-12 category-header"> 15 <div class="col-md-12 category-header">
@@ -39,7 +39,7 @@ @@ -39,7 +39,7 @@
39 <input type="hidden" class="order_inp" name="order" value="{{ topic.order }}" /> 39 <input type="hidden" class="order_inp" name="order" value="{{ topic.order }}" />
40 40
41 {% autoescape off %} 41 {% autoescape off %}
42 - {{ topic.description|default:_("Not Informed") }} 42 + {{ topic.description }}
43 {% endautoescape %} 43 {% endautoescape %}
44 </div> 44 </div>
45 </div> 45 </div>