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 @@
padding: 0;
list-style: none;
font-size: 13px;
line-height: 20px;
line-height: 29px;
}
.dd-list {
display: block;
......@@ -33,7 +33,6 @@
}
.dd-handle {
display: block;
height: 30px;
margin: 5px 0;
padding: 5px 10px;
color: #333;
......
......@@ -5,7 +5,7 @@
padding: 0;
list-style: none;
font-size: 13px;
line-height: 20px;
line-height: 29px;
}
.dd-list {
......@@ -38,7 +38,6 @@
.dd-handle {
display: block;
height: 30px;
margin: 5px 0;
padding: 5px 10px;
color: #333;
......
......@@ -34,8 +34,10 @@
<ol class="dd-list">
<?php foreach($menuItems as $menuItem): ?>
<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" style="margin-left: 50px;">{{ $menuItem->title }}</div>
<div class="dd-handle">
<a href="" class="btn btn-sm btn-info">Edit</a>
{{ $menuItem->title }}
</div>
</li>
<?php endforeach; ?>
</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