1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-11-30 05:24:09 +01:00

Title and description if long gets hidden, edit button works fine.

This commit is contained in:
raghunayyar 2012-11-18 14:17:38 +05:30 committed by Brice Maron
parent 7d254f156e
commit 618eb1fde3
2 changed files with 25 additions and 7 deletions

View File

@ -88,10 +88,21 @@ input.disabled, input.disabled:hover, input.disabled:focus {
display: block;
}
.bookmark_edit_btn {
float: left;
position: absolute;
top: 0.6em;
left: 10em;
}
.bookmark_title {
font-weight: bold;
display: inline-block;
margin-right: 0.8em;
width: 8em;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.bm_view_list .bookmark_tags {
@ -102,7 +113,7 @@ input.disabled, input.disabled:hover, input.disabled:focus {
}
.bookmark_tags {
margin-left:7em;
margin-left:11em;
position: absolute;
}
.bookmark_tag {
@ -254,9 +265,10 @@ li:hover em { display : none; }
display:block;
float:left;
position: absolute;
left: 7em;
width:30em;
left: 11em;
max-width:30em;
top: 0.7em;
font-weight:500;
}
.bookmark_date, .bookmark_submit {
font-size:small;

View File

@ -17,6 +17,12 @@
<span class="bookmark_desc"><%= encodeEntities(description)%> </span>
<span class="bookmark_date"><%= formatDate(added_date) %></span>
</p>
<div class="bookmark_edit_btn">
<span class="bookmark_edit">
<img class="svg" src="<?php echo OCP\image_path("", "actions/rename.svg");?>"
title="<?php echo $l->t('Edit');?>">
</span>
</div>
</div>
</script>