Skip to content

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
stanfortonski committed Aug 25, 2021
1 parent 18cd622 commit b60a402
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public/css/admin.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions resources/sass/admin/admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
@import 'custom-coreui';
@import 'components';

//hotfix
.c-wrapper:not(.c-wrapper-fluid) .c-body{
display: block !important;
}

label::first-letter, th[scope="col"]::first-letter{
text-transform: uppercase;
}
2 changes: 1 addition & 1 deletion resources/views/admin/categories/save.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<label for="url">{{ __('url') }}*</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">{{ url('/') }}/{{app()->getLocale()}}/categories/</span>
<span class="input-group-text">{{ route('index', app()->getLocale()) }}/{{app()->getLocale()}}/categories/</span>
</div>
<input type="text" id="url" name="content[url]" class="form-control @error('content.url') is-invalid @enderror" value="{{ $content->url ?? old('content.url') }}" required>
@error('content.url')
Expand Down
2 changes: 1 addition & 1 deletion resources/views/admin/files-manager.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="row justify-content-center">
<div class="col-12">
<iframe src="{{ route('admin.unisharp.lfm.show') }}" style="width: 100%; height: 600px; overflow: hidden; border: none;"></iframe>
<a href="{{ route('admin.unisharp.lfm.show') }}" class="btn btn-primary mt-4" target="_blank">{{ __('Open in new card') }}</a>
<a href="{{ route('admin.unisharp.lfm.show') }}" class="btn btn-primary my-4" target="_blank">{{ __('Open in new card') }}</a>
</div>
</div>
@endsection
2 changes: 1 addition & 1 deletion resources/views/admin/posts/save.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<label for="url">{{ __('url') }}*</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">{{ url('/') }}/{{app()->getLocale()}}/posts/</span>
<span class="input-group-text">{{ route('index', app()->getLocale()) }}/{{app()->getLocale()}}/posts/</span>
</div>
<input type="text" id="url" name="content[url]" class="form-control @error('content.url') is-invalid @enderror" value="{{ $content->url ?? old('content.url') }}" required>
@error('content.url')
Expand Down

0 comments on commit b60a402

Please sign in to comment.