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

Bookmark List UX Changed

Removed the link, orientation of the description and tags changed.
This commit is contained in:
raghunayyar 2012-11-18 01:28:54 +05:30 committed by Brice Maron
parent 046b6dff47
commit 7d254f156e
2 changed files with 15 additions and 9 deletions

View File

@ -63,7 +63,7 @@ input.disabled, input.disabled:hover, input.disabled:focus {
.bookmark_actions {
position: absolute;
right: 1em;
bottom:0.3em;
bottom:1.3em;
display: none;
}
.bookmark_actions span { margin: 0 0.4em; }
@ -100,6 +100,11 @@ input.disabled, input.disabled:hover, input.disabled:focus {
right: 6em;
text-align: right;
}
.bookmark_tags {
margin-left:7em;
position: absolute;
}
.bookmark_tag {
display: inline-block;
color: white;
@ -247,6 +252,11 @@ li:hover em { display : none; }
text-overflow:ellipsis;
overflow:hidden;
display:block;
float: left;
position: absolute;
left: 7em;
width:30em;
top: 0.7em;
}
.bookmark_date, .bookmark_submit {
font-size:small;
@ -255,6 +265,7 @@ li:hover em { display : none; }
color:gray;
/* margin-top:2.5em; */
margin-right: 0.2em;
top:0.8em;
}
/*

View File

@ -10,18 +10,13 @@
<a href="<%= encodeEntities(url) %>" target="_blank" class="bookmark_link">
<%= encodeEntities(title == '' ? url : title ) %>
</a>
</p>
<p class="bookmark_url">
<a href="<%= encodeEntities(url) %>" target="_blank" class="bookmark_link">
<%= encodeEntities(title == '' ? '' : url) %>
</a>
<span class="bookmark_edit">
<span class="bookmark_edit">
<img class="svg" src="<?php echo OCP\image_path("", "actions/rename.svg");?>"
title="<?php echo $l->t('Edit');?>">
</span>
<span class="bookmark_desc"><%= encodeEntities(description)%> </span>
<span class="bookmark_date"><%= formatDate(added_date) %></span>
</p>
<p class="bookmark_date"><%= formatDate(added_date) %></p>
<p class="bookmark_desc"><%= encodeEntities(description)%> </p>
</div>
</script>