]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Merge pull request #746 from ArthurHoaro/hotfix/delete-button
authorArthurHoaro <arthur@hoa.ro>
Sun, 15 Jan 2017 13:01:47 +0000 (14:01 +0100)
committerGitHub <noreply@github.com>
Sun, 15 Jan 2017 13:01:47 +0000 (14:01 +0100)
Fix delete button in editlink

tpl/default/css/shaarli.css
tpl/default/editlink.html

index 10709b6a3cd012e24702b0dad05a5cff905ac9b4..6d73af3ea115ca027bd9173d6428921deb068c8c 100644 (file)
@@ -42,7 +42,7 @@ strong {
 }
 
 /* Buttons */
-.bigbutton {
+.bigbutton, #pageheader a.bigbutton  {
     background-color: #c0c0c0;
     background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
     background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
@@ -54,11 +54,17 @@ strong {
     box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
     cursor: pointer;
     height: 24px;
-    margin-left: 5px;
     padding: 0 5px;
+    margin: 5px 5px 0 0;
     color: #606060;
     border-style: outset;
     border-width: 1px;
+    display: inline-block;
+}
+
+a.bigbutton, #pageheader a.bigbutton {
+    height: 22px;
+    line-height: 22px;
 }
 
 .smallbutton {
@@ -1009,7 +1015,7 @@ div.dailyNoEntry {
        display: inline !important;
     }
 
-    .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
+    .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton, a.bigbutton {
        width: 30%;
        font-size: smaller;
     }
index d3f99fe6482c75ad7fbe23e79a5f2d60b0b87e28..a2d9b78f96a61bcecf9d293892dcccefab70637f 100644 (file)
             {/if}
             <input type="submit" value="Save" name="save_edit" class="bigbutton">
             <input type="submit" value="Cancel" name="cancel_edit" class="bigbutton">
-            {if="!$link_is_new"}<input type="submit" value="Delete" name="delete_link" class="bigbutton delete" onClick="return confirmDeleteLink();">{/if}
+            {if="!$link_is_new && isset($link.id)"}
+              <a href="?delete_link&amp;lf_linkdate={$link.id}&amp;token={$token}"
+                 name="delete_link" class="bigbutton"
+                 onClick="return confirmDeleteLink();">
+                {'Delete'|t}
+              </a>
+            {/if}
             <input type="hidden" name="token" value="{$token}">
             {if="$http_referer"}<input type="hidden" name="returnurl" value="{$http_referer}">{/if}
         </form>