Commit f906d9eeb9dc44b6aad9f5d0997c260ffaac04a0

Authored by Felipe Henrique de Almeida Bormann
1 parent bc49fac0

modified templates

amadeus/static/css/base/amadeus.css
... ... @@ -53,8 +53,28 @@
53 53 padding:10px;
54 54 }
55 55  
  56 +.core-subjects-options{
  57 + padding: 0px;
  58 +}
  59 +
  60 +#core-subjects-options-div{
  61 + width: 100%;
  62 + margin-bottom: 2%;
  63 + height: 30px;
  64 +}
  65 +
56 66 .core-subjects-options > li{
57 67 float:left;
  68 + padding: 10px;
  69 + background-color: #FFFFFF;
  70 + margin: 1px;
  71 +
  72 + border-bottom: 4px;
  73 + border-bottom-style: solid;
  74 +}
  75 +
  76 +.core-subjects-options > li.active{
  77 + border-bottom-color: green;
58 78 }
59 79  
60 80 /* category app ends */
... ... @@ -112,7 +132,7 @@
112 132 }
113 133 .breadcrumb{
114 134 font-size: 16px;
115   - margin-bottom: 25px;
  135 + margin-bottom: 5px;
116 136 }
117 137  
118 138 .breadcrumb > li > a{
... ...
categories/templates/categories/list.html
... ... @@ -28,9 +28,9 @@
28 28  
29 29 {% endif %}
30 30  
31   -<div class="col-md-12">
  31 +<div id="core-subjects-options-div">
32 32 <ul class="core-subjects-options">
33   - <li>{% trans "My subjects" %}</li>
  33 + <li class="active">{% trans "My subjects" %}</li>
34 34 <li>{% trans "all subjects" %}</li>
35 35 </ul>
36 36 </div>
... ...