resposive headers, anchor styles updated

This commit is contained in:
batuhanbas
2020-01-22 22:37:04 +03:00
parent 0c97680c2e
commit 1ac706ad74
6 changed files with 19 additions and 19 deletions

View File

@ -7,8 +7,8 @@
<div class="col-xs-12 col-sm-6 text-center p-5">
<p class="text-justify description">{!! trans('general.empty.' . $page) !!} {!! trans('general.empty.documentation', ['url' => 'https://akaunting.com/docs/user-manual/' . $docs_path]) !!}</p>
<a href="{{ route($page . '.create') }}" class="btn btn-success header-button-top float-right mt-4">
<span class="btn-inner--icon text-white"><i class="fas fa-plus"></i></span>
<span class="btn-inner--text text-white">{{ trans('general.title.create', ['type' => trans_choice('general.' . $page, 1)]) }}</span>
<span class="btn-inner--icon"><i class="fas fa-plus"></i></span>
<span class="btn-inner--text">{{ trans('general.title.create', ['type' => trans_choice('general.' . $page, 1)]) }}</span>
</a>
</div>
</div>

View File

@ -1,12 +1,12 @@
@stack('footer_start')
<footer class="footer">
<div class="row">
<div class="col-md-6">
<div class="col-xs-12 col-sm-6">
<div class="text-sm float-left text-muted footer-texts">
{{ trans('footer.powered') }}: <a class="text-success" href="{{ trans('footer.link') }}" target="_blank">{{ trans('footer.software') }}</a>
{{ trans('footer.powered') }}: <a href="{{ trans('footer.link') }}" target="_blank">{{ trans('footer.software') }}</a>
</div>
</div>
<div class="col-md-6">
<div class="col-xs-12 col-sm-6">
<div class="text-sm float-right text-muted footer-texts">
{{ trans('footer.version') }} {{ version('short') }}
</div>

View File

@ -1,6 +1,6 @@
@stack('pagination_start')
@if ($items->firstItem())
<div class="col-6 d-flex align-items-center">
<div class="col-xs-12 col-sm-6 d-flex align-items-center">
{!! Form::select('limit', $limits, request('limit', setting('default.list_limit', '25')), ['class' => 'form-control form-control-sm d-inline-block w-auto d-none d-md-block', '@change' => 'onChangePaginationLimit($event)']) !!}
<span class="table-text d-none d-lg-block ml-2">
{{ trans('pagination.page') }}
@ -8,13 +8,13 @@
</span>
</div>
<div class="col-6">
<div class="col-xs-12 col-sm-6">
<nav class="float-right">
{!! $items->withPath(request()->url())->appends(request()->except('page'))->links() !!}
</nav>
</div>
@else
<div class="col-12" id="datatable-basic_info" role="status" aria-live="polite">
<div class="col-xs-12 col-sm-12" id="datatable-basic_info" role="status" aria-live="polite">
<small>{{ trans('general.no_records') }}</small>
</div>
@endif