1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-01-31 01:52:11 +01:00

separate Save and Cancel buttons, emphasize Save

This commit is contained in:
Jan-Christoph Borchardt 2013-10-12 08:43:27 +02:00
parent 357782d60d
commit 52a03faa5d
2 changed files with 10 additions and 2 deletions

View File

@ -377,6 +377,13 @@ li:hover em { display : none; }
margin: 3px;
height:6.4em;
}
.bookmark_form_submit {
margin-left: 4px;
}
.bookmark_form_submit .reset {
float: right;
}
.bm_view_img .bookmark_actions {
bottom: 0.7em;
display: block;

View File

@ -40,8 +40,9 @@
<textarea name="description" placeholder="<?php p($l->t('Description of the page'));?>"
><&= escapeHTML(description) &></textarea>
</p>
<p class="bookmark_form_submit"><button class="reset" ><?php p($l->t('Cancel'));?></button>
<input type="submit" value="<?php p($l->t('Save'));?>">
<p class="bookmark_form_submit">
<button class="reset" ><?php p($l->t('Cancel'));?></button>
<input type="submit" class="primary" value="<?php p($l->t('Save'));?>">
</p>
</form>
</div>