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

Add Date to bookamrk list and fix some style pbms

This commit is contained in:
Brice Maron 2012-08-05 21:34:01 +00:00
parent 566055f4e6
commit 5692e8904d
2 changed files with 15 additions and 2 deletions

View File

@ -256,6 +256,7 @@ li:hover em { display : none; }
}
#view_type {
display:none; /* @TODO: Remove when image view is ready*/
position: absolute;
right: 33.5em;
top: 0;
@ -284,12 +285,21 @@ li:hover em { display : none; }
}
.bookmark_desc{
height: 2em;
height: 1.5em;
padding-left:1em;
white-space:nowrap;
text-overflow:ellipsis;
overflow:hidden;
display:block;
}
.bookmark_date {
font-size:small;
position: absolute;
right: 6em;
color:gray;
/* margin-top:2.5em; */
margin-right: 0.2em;
}
/*
.bm_view_img .bookmark_single:hover .bookmark_url{
display:block;

View File

@ -229,6 +229,8 @@ function updateBookmarksList(bookmark) {
}
if(bookmark.title == '') bookmark.title = bookmark.url;
bookmark.added_date = new Date();
bookmark.added_date.setTime(parseInt(bookmark.added)*1000);
if(bookmark_view == 'image') { //View in images
service_url = formatString(shot_provider, {url: encodeEntities(bookmark.url), title: bookmark.title, width: 200});
$('.bookmarks_list').append(
@ -255,7 +257,7 @@ function updateBookmarksList(bookmark) {
}
$('div[data-id="'+ bookmark.id +'"] a.bookmark_tag').bind('click', addFilterTag);
}
else {
else { // View in text
$('.bookmarks_list').append(
'<div class="bookmark_single" data-id="' + bookmark.id +'" >' +
'<p class="bookmark_actions">' +
@ -270,6 +272,7 @@ function updateBookmarksList(bookmark) {
'<a href="' + encodeEntities(bookmark.url) + '" target="_blank" class="bookmark_link">' + encodeEntities(bookmark.title) + '</a>' +
'</p>' +
'<p class="bookmark_url"><a href="' + encodeEntities(bookmark.url) + '" target="_blank" class="bookmark_link">' + encodeEntities(bookmark.url) + '</a></p>' +
'<p class="bookmark_date">' + formatDate(bookmark.added_date) + '</p>' +
'<p class="bookmark_desc">'+ encodeEntities(bookmark.description) + '</p>' +
'</div>'
);