Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes alignment of admin sidebar icons and text #824

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Themes/Adminlte/assets/css/asgard.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ footer.main-footer p.text-muted {
padding: 10px 25px 10px 15px;
font-size: 12px;
}
.sidebar-menu .menu-icon {
margin-right: 5px;
}
.sidebar-menu .append {
margin-top: -44px;
}
Expand Down
4 changes: 4 additions & 0 deletions Themes/Adminlte/resources/assets/less/asgard.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

@import "skins/blue.less";

.sidebar-menu .menu-icon {
margin-right: 5px;
}

// For the appended elements
.sidebar-menu .append {
margin-top: -44px;
Expand Down
3 changes: 3 additions & 0 deletions public/themes/adminlte/css/asgard.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ footer.main-footer p.text-muted {
padding: 10px 25px 10px 15px;
font-size: 12px;
}
.sidebar-menu .menu-icon {
margin-right: 5px;
}
.sidebar-menu .append {
margin-top: -44px;
}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/vendor/sidebar/item.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<li class="@if($item->getItemClass()){{ $item->getItemClass() }}@endif @if($active)active @endif @if($item->hasItems())treeview @endif clearfix">
<a href="{{ $item->getUrl() }}" class="@if(count($appends) > 0) hasAppend @endif" @if($item->getNewTab())target="_blank"@endif>
<i class="{{ $item->getIcon() }}"></i>
<i class="{{ $item->getIcon() }} fa-fw menu-icon"></i>
<span>{{ $item->getName() }}</span>

@foreach($badges as $badge)
Expand Down