Commit 2f0bb2ea authored by Nicolas Widart's avatar Nicolas Widart

Removing inline styles and adding them to the stylesheet

parent cea4a207
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
padding: 0; padding: 0;
list-style: none; list-style: none;
font-size: 13px; font-size: 13px;
line-height: 20px; line-height: 29px;
} }
.dd-list { .dd-list {
display: block; display: block;
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
} }
.dd-handle { .dd-handle {
display: block; display: block;
height: 30px;
margin: 5px 0; margin: 5px 0;
padding: 5px 10px; padding: 5px 10px;
color: #333; color: #333;
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
padding: 0; padding: 0;
list-style: none; list-style: none;
font-size: 13px; font-size: 13px;
line-height: 20px; line-height: 29px;
} }
.dd-list { .dd-list {
...@@ -38,7 +38,6 @@ ...@@ -38,7 +38,6 @@
.dd-handle { .dd-handle {
display: block; display: block;
height: 30px;
margin: 5px 0; margin: 5px 0;
padding: 5px 10px; padding: 5px 10px;
color: #333; color: #333;
......
...@@ -34,8 +34,10 @@ ...@@ -34,8 +34,10 @@
<ol class="dd-list"> <ol class="dd-list">
<?php foreach($menuItems as $menuItem): ?> <?php foreach($menuItems as $menuItem): ?>
<li class="dd-item" data-id="{{ $menuItem->id }}"> <li class="dd-item" data-id="{{ $menuItem->id }}">
<a href="" class="btn btn-sm btn-info" style="float: left; margin-right: 15px">Edit</a> <div class="dd-handle">
<div class="dd-handle" style="margin-left: 50px;">{{ $menuItem->title }}</div> <a href="" class="btn btn-sm btn-info">Edit</a>
{{ $menuItem->title }}
</div>
</li> </li>
<?php endforeach; ?> <?php endforeach; ?>
</ol> </ol>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment