Merge pull request #353 from tmuncks/user-dropdown-colors

Change user-dropdown button colors
This commit is contained in:
Khanh Ngo 2018-09-03 11:28:44 +07:00 committed by GitHub
commit c13d616a7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -32,3 +32,6 @@ table td {
color: olive;
}
.user-footer {
background-color: #222d32 !important;
}

View file

@ -70,10 +70,10 @@
<!-- Menu Footer-->
<li class="user-footer">
<div class="pull-left">
<a href="{{ url_for('user_profile') }}" class="btn btn-flat btn-default">My Profile</a>
<a href="{{ url_for('user_profile') }}" class="btn btn-flat btn-primary">My Profile</a>
</div>
<div class="pull-right">
<a href="{{ url_for('logout') }}" class="btn btn-flat btn-default">Log out</a>
<a href="{{ url_for('logout') }}" class="btn btn-flat btn-warning">Log out</a>
</div>
</li>
</ul>