mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
surrounding text aligns correctly
This commit is contained in:
parent
247c881d87
commit
aabd5e92a8
|
@ -141,6 +141,9 @@ a.accordion-header {
|
||||||
.dropdown-menu li a {
|
.dropdown-menu li a {
|
||||||
//color: inherit;
|
//color: inherit;
|
||||||
}
|
}
|
||||||
|
.pull-text-right{
|
||||||
|
text-align: right; !important;
|
||||||
|
}
|
||||||
|
|
||||||
.main-header .sidebar-toggle:before {
|
.main-header .sidebar-toggle:before {
|
||||||
content: "\f0c9";
|
content: "\f0c9";
|
||||||
|
|
|
@ -851,11 +851,11 @@
|
||||||
|
|
||||||
</div><!-- /.content-wrapper -->
|
</div><!-- /.content-wrapper -->
|
||||||
@if ($snipeSettings->footer_text!='')
|
@if ($snipeSettings->footer_text!='')
|
||||||
<footer class="main-footer hidden-print" style="display:flex;flex-direction:row;" >
|
<footer class="main-footer hidden-print" style="display:grid;flex-direction:row;" >
|
||||||
@else
|
@else
|
||||||
<footer class="main-footer hidden-print">
|
<footer class="main-footer hidden-print">
|
||||||
@endif
|
@endif
|
||||||
<div class="pull-right hidden-xs">
|
<div class="pull-text-right hidden-xs">
|
||||||
@if ($snipeSettings->version_footer!='off')
|
@if ($snipeSettings->version_footer!='off')
|
||||||
@if (($snipeSettings->version_footer=='on') || (($snipeSettings->version_footer=='admin') && (Auth::user()->isSuperUser()=='1')))
|
@if (($snipeSettings->version_footer=='on') || (($snipeSettings->version_footer=='admin') && (Auth::user()->isSuperUser()=='1')))
|
||||||
<strong>Version</strong> {{ config('version.app_version') }} -
|
<strong>Version</strong> {{ config('version.app_version') }} -
|
||||||
|
@ -878,19 +878,18 @@
|
||||||
href="{{ $snipeSettings->privacy_policy_link }}"
|
href="{{ $snipeSettings->privacy_policy_link }}"
|
||||||
target="_new" >{{ trans('admin/settings/general.privacy_policy') }}</a>
|
target="_new" >{{ trans('admin/settings/general.privacy_policy') }}</a>
|
||||||
@endif
|
@endif
|
||||||
|
made with <i class="fas fa-heart" style="color: #a94442; font-size: 10px" aria-hidden="true"></i><span
|
||||||
|
class="sr-only">love</span> by <a href="https://twitter.com/snipeitapp" rel="noopener">@snipeitapp</a>.
|
||||||
</div>
|
</div>
|
||||||
|
<div class="pull-text-right"><a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software,</div>
|
||||||
@if ($snipeSettings->footer_text!='')
|
@if ($snipeSettings->footer_text!='')
|
||||||
<div class="pull-right" style="display: flex;flex-direction: row;">
|
<div style="flex-direction: row;">
|
||||||
{!! Helper::parseEscapedMarkedown($snipeSettings->footer_text) !!}
|
{!! Helper::parseEscapedMarkedown($snipeSettings->footer_text) !!}
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
<br>
|
||||||
|
|
||||||
|
|
||||||
<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software,
|
|
||||||
made with <i class="fas fa-heart" style="color: #a94442; font-size: 10px" aria-hidden="true"></i><span
|
|
||||||
class="sr-only">love</span> by <a href="https://twitter.com/snipeitapp" rel="noopener">@snipeitapp</a>.
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue