Commit 0231661dc8d9a0d718bb263bb108febe1c788b25
1 parent
22b0fa7b
Exists in
master
and in
3 other branches
fixing layout issues
Showing
2 changed files
with
8 additions
and
3 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
... | ... | @@ -636,8 +636,13 @@ ul, li { |
636 | 636 | } |
637 | 637 | .data_register_course p{ color: grey; } |
638 | 638 | .category-course-link{ |
639 | - font-size: 24px; | |
640 | - color: black !important; | |
639 | + font-size: 16px; | |
640 | + color: #FFFFFF !important; | |
641 | + font-family: Roboto Regular; | |
642 | +} | |
643 | + | |
644 | +.category-course-link:hover{ | |
645 | + text-decoration: none; | |
641 | 646 | } |
642 | 647 | |
643 | 648 | /* Menu link remove radius */ | ... | ... |
amadeus/templates/base.html
... | ... | @@ -138,7 +138,7 @@ |
138 | 138 | <div class="col-xs-2 col-sm-2 col-md-2 col-lg-2 col-xl-2"> |
139 | 139 | {% block sidebar %} |
140 | 140 | <ul id="sidebar-menu"> |
141 | - <li class="item" data-toggle="tooltip" data-placement="right" title="{% trans "My Subjects" %}"> | |
141 | + <li class="item" data-toggle="tooltip" data-placement="right" title="{% trans "Subjects" %}"> | |
142 | 142 | <i class="fa fa-graduation-cap" aria-hidden="true"></i> |
143 | 143 | </li> |
144 | 144 | <li class="item" data-toggle="tooltip" data-placement="right" title="{% trans "Timeline" %}"> | ... | ... |