App page image responsive issue solved
This commit is contained in:
parent
7c24cb30db
commit
28a80bc999
@ -14,6 +14,12 @@ return [
|
||||
'no_apps' => 'There are no apps in this category, yet.',
|
||||
'developer' => 'Are you a developer? <a href="https://akaunting.com/blog/akaunting-app-store" target="_blank">Here</a> you can learn how to create an app and start selling today!',
|
||||
|
||||
'about' => 'About',
|
||||
|
||||
'added' => 'Added',
|
||||
'updated' => 'Updated',
|
||||
'compatibility' => 'Compatibility',
|
||||
|
||||
'installed' => ':module installed',
|
||||
'uninstalled' => ':module uninstalled',
|
||||
'updated' => ':module updated',
|
||||
|
@ -97,7 +97,7 @@
|
||||
<!-- /.box -->
|
||||
|
||||
<div class="content-header no-padding-left">
|
||||
<h3>About</h3>
|
||||
<h3>{{ trans('modules.about') }}</h3>
|
||||
</div>
|
||||
|
||||
<div class="box box-success">
|
||||
@ -105,27 +105,27 @@
|
||||
<table class="table table-striped">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Vendor</th>
|
||||
<th>{{ trans_choice('general.vendors', 1) }}</th>
|
||||
<td class="text-right"><a href="{{ url('apps/vendor/' . $module->vendor->id) }}">{{ $module->vendor_name }}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Version</th>
|
||||
<th>{{ trans('footer.version') }}</th>
|
||||
<td class="text-right">{{ $module->version }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Added</th>
|
||||
<th>{{ trans('modules.added') }}</th>
|
||||
<td class="text-right">{{ Date::parse($module->created_at)->format($date_format) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Updated</th>
|
||||
<th>{{ trans('modules.updated') }}</th>
|
||||
<td class="text-right">{{ Date::parse($module->updated_at)->diffForHumans() }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Compatibility</th>
|
||||
<th>{{ trans('modules.compatibility') }}</th>
|
||||
<td class="text-right">{{ $module->compatibility }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Category</th>
|
||||
<th>{{ trans_choice('general.categories', 1) }}</th>
|
||||
<td class="text-right"><a href="{{ url('apps/categories/' . $module->category->slug) }}">{{ $module->category->name }}</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -139,6 +139,16 @@
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@push('css')
|
||||
<style type="text/css">
|
||||
.nav-tabs-custom img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
</style>
|
||||
@endpush
|
||||
|
||||
@push('scripts')
|
||||
<script type="text/javascript">
|
||||
var step = new Array();
|
||||
|
Loading…
x
Reference in New Issue
Block a user