mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 18:14:32 -04:00
Added social icons to navigation footer
This commit is contained in:
parent
03e9e978d7
commit
a6ad3696aa
2
public/css/built.css
vendored
2
public/css/built.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
resources/assets/css/sidebar.css
vendored
4
resources/assets/css/sidebar.css
vendored
@ -167,6 +167,10 @@
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sidebar-nav li div.nav-footer {
|
||||||
|
text-indent: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.sidebar-nav li div.nav-footer i {
|
.sidebar-nav li div.nav-footer i {
|
||||||
color:#ccc !important;
|
color:#ccc !important;
|
||||||
}
|
}
|
||||||
|
@ -517,15 +517,18 @@
|
|||||||
<i class="fa fa-envelope"></i>
|
<i class="fa fa-envelope"></i>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ url(NINJA_FORUM_URL) }}" target="_blank" title="{{ trans('texts.support_forum') }}">
|
<a href="{{ url(NINJA_FORUM_URL) }}" target="_blank" title="{{ trans('texts.support_forum') }}">
|
||||||
|
<i class="fa fa-list-ul"></i>
|
||||||
|
</a>
|
||||||
|
<a href="javascript:showKeyboardShortcuts()" target="_blank" title="{{ trans('texts.keyboard_shortcuts') }}">
|
||||||
<i class="fa fa-question-circle"></i>
|
<i class="fa fa-question-circle"></i>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ url(SOCIAL_LINK_FACEBOOK) }}" target="_blank" title="">
|
<a href="{{ url(SOCIAL_LINK_FACEBOOK) }}" target="_blank" title="Facebook">
|
||||||
<i class="fa fa-facebook-square"></i>
|
<i class="fa fa-facebook-square"></i>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ url(SOCIAL_LINK_TWITTER) }}" target="_blank" title="">
|
<a href="{{ url(SOCIAL_LINK_TWITTER) }}" target="_blank" title="Twitter">
|
||||||
<i class="fa fa-twitter-square"></i>
|
<i class="fa fa-twitter-square"></i>
|
||||||
</a>
|
</a>
|
||||||
<a href="{{ url(SOCIAL_LINK_GITHUB) }}" target="_blank" title="">
|
<a href="{{ url(SOCIAL_LINK_GITHUB) }}" target="_blank" title="GitHub">
|
||||||
<i class="fa fa-github-square"></i>
|
<i class="fa fa-github-square"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -82,10 +82,15 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
function showKeyboardShortcuts() {
|
||||||
|
$('#helpModal').modal('show');
|
||||||
|
}
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
|
|
||||||
Mousetrap.bind('?', function(e) {
|
Mousetrap.bind('?', function(e) {
|
||||||
$('#helpModal').modal('show');
|
showKeyboardShortcuts();
|
||||||
});
|
});
|
||||||
|
|
||||||
Mousetrap.bind('/', function(e) {
|
Mousetrap.bind('/', function(e) {
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<a type="button" class="btn btn-default btn-sm pull-right" title="{{ Utils::getReadableUrl(request()->path()) }}"
|
<a type="button" class="btn btn-default btn-sm pull-right" title="{{ Utils::getReadableUrl(request()->path()) }}"
|
||||||
href="{{ Utils::getDocsUrl(request()->path()) }}" target="_blank">
|
href="{{ Utils::getDocsUrl(request()->path()) }}" target="_blank">
|
||||||
<i class="fa fa-question-circle" style="width:20px"></i>
|
<i class="fa fa-info-circle" style="width:20px"></i>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
@elseif (Auth::user()->can('create', $option) || Auth::user()->can('create', substr($option, 0, -1)))
|
@elseif (Auth::user()->can('create', $option) || Auth::user()->can('create', substr($option, 0, -1)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user