Skip to content

Commit 5e034d6

Browse files
Merge pull request #1269 from suraj-webkul/refactor
update push directive.
2 parents 1b2e3f2 + 401d285 commit 5e034d6

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

packages/Webkul/Admin/src/Resources/views/layouts/master.blade.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
@yield('head')
2929

30-
@yield('css')
3130
@stack('css')
3231

3332
{!! view_render_event('admin.layout.head') !!}

packages/Webkul/Admin/src/Resources/views/leads/view.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{ $lead->title }}
55
@stop
66

7-
@section('css')
7+
@push('css')
88
<style>
99
.modal-container .modal-header {
1010
border: 0;
@@ -18,7 +18,7 @@
1818
margin-bottom: 30px;
1919
}
2020
</style>
21-
@stop
21+
@endpush
2222

2323
@section('content-wrapper')
2424

packages/Webkul/Admin/src/Resources/views/mail/view.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{ $email->subject }}
55
@stop
66

7-
@section('css')
7+
@push('css')
88
<style>
99
.lead-form .modal-container .modal-header {
1010
border: 0;
@@ -18,7 +18,7 @@
1818
width:100%;
1919
}
2020
</style>
21-
@stop
21+
@endpush
2222

2323
@section('content-wrapper')
2424

packages/Webkul/Admin/src/Resources/views/settings/tags/edit.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{ __('admin::app.settings.tags.edit-title') }}
55
@stop
66

7-
@section('css')
7+
@push('css')
88
<style>
99
.color-item {
1010
position: relative;
@@ -36,7 +36,7 @@
3636
border: solid 3px #FFFFFF;
3737
}
3838
</style>
39-
@stop
39+
@endpush
4040

4141
@section('content-wrapper')
4242
<div class="content full-page adjacent-center">

packages/Webkul/Admin/src/Resources/views/settings/tags/index.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{ __('admin::app.settings.tags.title') }}
55
@stop
66

7-
@section('css')
7+
@push('css')
88
<style>
99
.color-item {
1010
position: relative;
@@ -36,7 +36,7 @@
3636
border: solid 3px #FFFFFF;
3737
}
3838
</style>
39-
@stop
39+
@endpush
4040

4141
@section('content-wrapper')
4242
<div class="content full-page">

packages/Webkul/Admin/src/Resources/views/user/account/edit.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
{{ __('admin::app.user.account.my_account') }}
55
@stop
66

7-
@section('css')
7+
@push('css')
88
<style>
99
.panel-header,
1010
.panel-body {
1111
margin: 0 auto;
1212
max-width: 800px;
1313
}
1414
</style>
15-
@stop
15+
@endpush
1616

1717
@section('content-wrapper')
1818
<div class="content full-page adjacent-center">

0 commit comments

Comments
 (0)