Commit b633b2f305251025a0e38ac2684e05859ef9d15e
1 parent
2d49afc0
Exists in
master
and in
3 other branches
modified header menu and css
Showing
2 changed files
with
15 additions
and
4 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
... | ... | @@ -20,10 +20,6 @@ |
20 | 20 | } |
21 | 21 | |
22 | 22 | |
23 | -#sidebar-menu > .item i { | |
24 | - | |
25 | -} | |
26 | - | |
27 | 23 | |
28 | 24 | /* side bar menu ends*/ |
29 | 25 | |
... | ... | @@ -84,6 +80,16 @@ |
84 | 80 | width:40%; |
85 | 81 | } |
86 | 82 | |
83 | +#horizontal-line{ | |
84 | + height:2px; | |
85 | + background-color: black; | |
86 | +} | |
87 | + | |
88 | +.navbar .dropdown-menu li>a, .navbar.navbar-default .dropdown-menu li>a { | |
89 | + font-size: 16px !important; | |
90 | + padding: 7px 16px !important; | |
91 | +} | |
92 | + | |
87 | 93 | /* HEADER */ |
88 | 94 | |
89 | 95 | ... | ... |
amadeus/templates/base.html
... | ... | @@ -109,6 +109,11 @@ |
109 | 109 | <ul class="dropdown-menu pull-right"> |
110 | 110 | <li><a href="{% url 'users:manage' %}">{% trans 'Manage Users' %}</a></li> |
111 | 111 | <li><a href="{% url 'categories:index' %}">{% trans 'Manage Courses' %}</a></li> |
112 | + <li><a href="{% url 'categories:index' %}">{% trans 'System' %}</a></li> | |
113 | + <div id="horizontal-line"></div> | |
114 | + <li><a href="{% url 'categories:index' %}">{% trans 'Mail Sender' %}</a></li> | |
115 | + <li><a href="{% url 'categories:index' %}">{% trans 'Security' %}</a></li> | |
116 | + <li><a href="{% url 'categories:index' %}">{% trans 'Theme' %}</a></li> | |
112 | 117 | </ul> |
113 | 118 | </li> |
114 | 119 | <li title data-original-title="{% trans 'account' %}"> | ... | ... |