Skip to content

Commit 7f46a6d

Browse files
author
endi
committed
update templates
1 parent 1edc459 commit 7f46a6d

File tree

3 files changed

+10
-17
lines changed

3 files changed

+10
-17
lines changed

publishes/public/nestable.css

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
display: block;
44
margin: 0;
55
padding: 0;
6-
max-width: 600px;
76
list-style: none;
87
font-size: 13px;
98
line-height: 20px;
@@ -39,7 +38,7 @@
3938

4039
.dd-handle {
4140
display: block;
42-
height: 30px;
41+
height: 40px;
4342
margin: 5px 0;
4443
padding: 5px 10px;
4544
color: #333;
@@ -68,7 +67,7 @@
6867
float: left;
6968
width: 25px;
7069
height: 20px;
71-
margin: 5px 0;
70+
margin: 10px 0;
7271
padding: 0;
7372
text-indent: 100%;
7473
white-space: nowrap;
@@ -183,12 +182,6 @@
183182
}
184183

185184
@media only screen and (min-width: 700px) {
186-
187-
.dd {
188-
float: left;
189-
width: 48%;
190-
}
191-
192185
.dd + .dd {
193186
margin-left: 2%;
194187
}
@@ -205,9 +198,9 @@
205198

206199
.dd3-content {
207200
display: block;
208-
height: 30px;
201+
height: 40px;
209202
margin: 5px 0;
210-
padding: 5px 10px 5px 40px;
203+
padding: 9px 10px 5px 50px;
211204
color: #333;
212205
text-decoration: none;
213206
font-weight: bold;
@@ -232,7 +225,7 @@
232225
}
233226

234227
.dd3-item > button {
235-
margin-left: 30px;
228+
margin-left: 40px;
236229
}
237230

238231
.dd3-handle {
@@ -241,7 +234,7 @@
241234
left: 0;
242235
top: 0;
243236
cursor: pointer;
244-
width: 30px;
237+
width: 40px;
245238
text-indent: 100%;
246239
white-space: nowrap;
247240
overflow: hidden;
@@ -259,7 +252,7 @@
259252
display: block;
260253
position: absolute;
261254
left: 0;
262-
top: 3px;
255+
top: 9px;
263256
width: 100%;
264257
text-align: center;
265258
text-indent: 0;

publishes/views/edit/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
@include($template->edit('scripts'))
4545

4646
@section('scaffold.css')
47-
<link rel="stylesheet" href="{{ mix($file = 'admin/navigation/nestable.css') }}">
47+
<link rel="stylesheet" href="{{ asset($file = 'admin/navigation/nestable.css') }}">
4848
@append
4949

5050
@section('scaffold.js')

publishes/views/edit/providers.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
$expanded = $loop->index == 0;
55
?>
66
@if (class_basename($provider) == 'LinksProvider')
7-
<div class="panel">
7+
<div class="panel panel-default">
88
<div class="panel-heading" role="tab">
99
<h3 class="panel-title">
1010
<a data-toggle="collapse" data-parent="#accordion" href="#links-list" aria-expanded="false" class="collapsed">
@@ -30,7 +30,7 @@
3030
</div>
3131
</div>
3232
@else
33-
<div class="panel">
33+
<div class="panel panel-default">
3434
<div class="panel-heading">
3535
<h3 class="panel-title">
3636
<a data-toggle="collapse" data-parent="#accordion" href="#{{ $slug = str_slug($name = $provider->name()) }}-list" aria-expanded="{{ $expanded ? 'true' : 'false' }}" class="{{ $expanded ? '' : 'collapsed' }}">{{ $name }}</a>

0 commit comments

Comments
 (0)