Skip to content

Commit d3d5a03

Browse files
committed
Update fomantic ui views
1 parent 08cd78e commit d3d5a03

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

resources/views/fomanticui/fomantic-ui.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($paginator->hasPages())
2-
<div class="ui fluid buttons" role="navigation">
2+
<div class="ui fluid wrapping spaced buttons" role="navigation">
33
{{-- Previous Page Link --}}
44
@if ($paginator->onFirstPage())
55
<div class="ui basic button disabled" aria-disabled="true">

resources/views/fomanticui/simple-fomantic-ui.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
{{-- Previous Page Link --}}
44
<div class="column">
55
@if ($paginator->onFirstPage())
6-
<div class="ui disabled left floated button" aria-disabled="true">
6+
<div class="ui disabled left floated basic button" aria-disabled="true">
77
{!! __('pagination.previous') !!}
88
</div>
99
@else
10-
<a class="ui left floated button"
10+
<a class="ui left floated basic button"
1111
href="{{ $paginator->previousPageUrl() }}"
1212
rel="prev">
1313
{!! __('pagination.previous') !!}
1414
</a>
1515
@endif
1616
{{-- Next Page Link --}}
1717
@if ($paginator->hasMorePages())
18-
<a class="ui right floated button"
18+
<a class="ui right floated basic button"
1919
href="{{ $paginator->nextPageUrl() }}"
2020
rel="next">
2121
{!! __('pagination.next') !!}
2222
</a>
2323
@else
24-
<div class="ui disabled right floated button" aria-disabled="true">
24+
<div class="ui disabled right floated basic button" aria-disabled="true">
2525
{!! __('pagination.next') !!}
2626
</div>
2727
@endif

0 commit comments

Comments
 (0)