Browse Source

Fix links list layout in admin after adding `code` field

Markus Ochel 12 years ago
parent
commit
8ba4aa8262
1 changed files with 3 additions and 5 deletions
  1. 3 5
      admin/templates/partials/link-form.html

+ 3 - 5
admin/templates/partials/link-form.html

@@ -1,11 +1,9 @@
 <div class="link-form clearfix">
   <div class="field-left">
-    <label>Label</label>
-    <input type="text" name="link_label" value="{{label}}" placeholder="ie. Facebook">
-    <input type="text" name="link_code" value="{{code}}" placeholder="Code for icon">    
+    <input type="text" name="link_label" value="{{label}}" placeholder="Label" style="width: 55%; display: inline-block;">&nbsp;
+    <input type="text" name="link_code" value="{{code}}" placeholder="code" style="width: 40%; display: inline-block;">
   </div>
   <div class="field-right">
-    <label>URL</label>
-    <input type="text" name="link_url" value="{{url}}" placeholder="http://facebook.com/UserName">
+    <input type="text" name="link_url" value="{{url}}" placeholder="URL">
   </div>
 </div>