mirror of
https://github.com/owncloud/bookmarks.git
synced 2025-01-31 01:52:11 +01:00
Bookmark: Remove top control bar and few others. fix #162
This commit is contained in:
parent
a6c2e662cd
commit
85ba9207d8
@ -11,12 +11,12 @@ input.disabled, input.disabled:hover {
|
||||
color: gray;
|
||||
}
|
||||
#leftcontent {
|
||||
padding-top: 1em;
|
||||
top: 4em !important;
|
||||
}
|
||||
|
||||
#rightcontent {
|
||||
padding-top: 5px;
|
||||
top: 3.5em !important;
|
||||
top: 1em !important;
|
||||
}
|
||||
|
||||
.bookmarks_headline {
|
||||
@ -40,8 +40,11 @@ input.disabled, input.disabled:hover {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#add_form {
|
||||
padding-bottom: 2em;
|
||||
}
|
||||
#add_url {
|
||||
width: 25em;
|
||||
width: 12em;
|
||||
}
|
||||
.bookmarks_addBml {
|
||||
text-decoration: underline;
|
||||
|
@ -15,7 +15,8 @@ $(document).ready(function() {
|
||||
$('#tag_filter input').tagit({
|
||||
allowSpaces: true,
|
||||
availableTags: fullTags,
|
||||
onTagFinishRemoved: filterTagsChanged
|
||||
onTagFinishRemoved: filterTagsChanged,
|
||||
placeholderText: t('bookmark', 'Filter by tag')
|
||||
}).tagit('option', 'onTagAdded', filterTagsChanged);
|
||||
getBookmarks();
|
||||
});
|
||||
|
@ -7,17 +7,16 @@
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
?>
|
||||
<input type="hidden" id="bookmarkFilterTag" value="<?php echo $_['req_tag']; ?>" />
|
||||
<div id="controls">
|
||||
<form id="add_form">
|
||||
<input type="text" id="add_url" value="" placeholder="<?php echo $l->t('Address'); ?>"/>
|
||||
<input type="submit" value="<?php echo $l->t('Add bookmark'); ?>" id="bookmark_add_submit" />
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div id="leftcontent">
|
||||
|
||||
<form id="add_form">
|
||||
<input type="text" id="add_url" value="" placeholder="<?php echo $l->t('Address'); ?>"/>
|
||||
<input type="submit" value="<?php echo $l->t('Add'); ?>" id="bookmark_add_submit" />
|
||||
</form>
|
||||
|
||||
<p id="tag_filter">
|
||||
<input type="text" placeholder="Filter By tag" value="<?php echo $_['req_tag']; ?>"/>
|
||||
<input type="text" value="<?php echo $_['req_tag']; ?>"/>
|
||||
</p>
|
||||
|
||||
<label><?php echo $l->t('Related Tags'); ?></label>
|
||||
|
Loading…
x
Reference in New Issue
Block a user