mirror of
https://github.com/friendica/friendica
synced 2024-11-10 13:02:54 +00:00
some changes to use friendicas new autocomplete function
This commit is contained in:
parent
f9c9019d90
commit
30317e3af0
4 changed files with 27 additions and 15 deletions
|
@ -1280,29 +1280,34 @@ blockquote.shared_content {
|
|||
padding-bottom: 5px !important;
|
||||
}
|
||||
|
||||
/* acpopup */
|
||||
/* acpopup + textcompletion*/
|
||||
.acpopup {
|
||||
max-height: 150px;
|
||||
/* max-height: 150px; */
|
||||
background-color: #ffffff;
|
||||
color: #555;
|
||||
border-radius: 4px;
|
||||
overflow: auto;
|
||||
z-index: 100000;
|
||||
box-shadow: 0 6px 12px rgba(0,0,0,.175);
|
||||
}
|
||||
.acpopupitem {
|
||||
color: #555;
|
||||
padding: 4px;
|
||||
clear: left;
|
||||
nav .acpopup {
|
||||
/*top: 35px !important;*/
|
||||
margin-left: -23px;
|
||||
}
|
||||
.acpopupitem.selected {
|
||||
background-color: $nav_bg;
|
||||
color: $nav_icon_color;
|
||||
/** @todo: we schould consider the possebility to overwrite bootstrap dropdowns
|
||||
at the beginning of this file */
|
||||
.textcomplete-item a {
|
||||
color: #555 !important;
|
||||
}
|
||||
.acpopupitem img {
|
||||
float: left;
|
||||
margin-right: 4px;
|
||||
.textcomplete-item.active > a {
|
||||
background-color: rgb(247, 247, 247) !important;
|
||||
background-image: none !important;
|
||||
border-left: 3px solid $link_color;
|
||||
padding-left: 17px !important;
|
||||
}
|
||||
.textcomplete-item a .forum {
|
||||
color: $link_color;
|
||||
}
|
||||
|
||||
|
||||
/* The wall-item thread levels */
|
||||
/*.wall-item-container.thread_level_3 {
|
||||
|
|
|
@ -15,7 +15,8 @@ function initEditor(cb){
|
|||
$("#jot-category").show();
|
||||
$("#jot-category").addClass("jot-category-ex");
|
||||
$("#jot-profile-jot-wrapper").show();
|
||||
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
|
||||
$("#profile-jot-text").editor_autocomplete(baseurl+"/acl");
|
||||
$("#profile-jot-text").bbco_autocomplete('bbcode');
|
||||
editor = true;
|
||||
$("a#jot-perms-icon").colorbox({
|
||||
'inline' : true,
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
<form class="navbar-form" role="search" method="get" action="{{$nav.search.0}}">
|
||||
<!-- <img class="hidden-xs" src="{{$userinfo.icon}}" alt="{{$userinfo.name}}" style="max-width:33px; max-height:33px; min-width:33px; min-height:33px; width:33px; height:33px;"> -->
|
||||
<div class="form-group form-group-search">
|
||||
<input id="search-input-field" class="form-control form-search" type="text" name="search" placeholder="Search">
|
||||
<input id="nav-search-input-field" class="form-control form-search" type="text" name="search" placeholder="Search">
|
||||
<button class="btn btn-default btn-sm form-button-search" type="submit">Search</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
6
templates/nav_head.tpl
Normal file
6
templates/nav_head.tpl
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$("#nav-search-input-field").search_autocomplete(baseurl + '/acl');
|
||||
});
|
||||
</script>
|
Loading…
Reference in a new issue