adding padding to the edit and delete links
authorAnthony Talarico <talarico@gaslightmedia.com>
Mon, 31 Jul 2017 20:11:05 +0000 (16:11 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Mon, 31 Jul 2017 20:11:05 +0000 (16:11 -0400)
the admin side edit and delete links on the list trail page needed padding

css/admin.css
views/admin/trailreports/index.html

index 787904f..6efc358 100644 (file)
@@ -20,4 +20,8 @@
 }
 .no-padding{
     padding: 0 !important;
+}
+.trail-edit{
+    display: inlike-block;
+    padding: 5px;
 }
\ No newline at end of file
index a82dad3..46449d2 100644 (file)
@@ -21,7 +21,7 @@
                     <td>{$data.report_date.date}</td>
                     <td>{$data.report_blurb}</td>
                     <td>{$data.report_notes}</td>
-                    <td><a href="{$thisUrl}?page={$thisPage}&glm_action=index&option=edit&report={$data.id}">Edit</a><a href="{$thisUrl}?page={$thisPage}&glm_action=index&option=delete&report={$data.id}">Delete</a></td>
+                    <td><a class="trail-edit" href="{$thisUrl}?page={$thisPage}&glm_action=index&option=edit&report={$data.id}">Edit</a><a class="trail-edit" href="{$thisUrl}?page={$thisPage}&glm_action=index&option=delete&report={$data.id}">Delete</a></td>
                 </tr>
             {/foreach}
             </table>