Small fix for new folder navigation
This commit is contained in:
parent
25a6882a15
commit
8b81be7707
3 changed files with 10 additions and 3 deletions
|
@ -74,6 +74,10 @@
|
||||||
outline: 2px solid rgba(30,150,192, 0.5);
|
outline: 2px solid rgba(30,150,192, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#directorylistbox .searchresults .listing li {
|
||||||
|
background-color: #c7e3ef;
|
||||||
|
}
|
||||||
|
|
||||||
#directorylist li.addressbook.readonly,
|
#directorylist li.addressbook.readonly,
|
||||||
#directorylist li.addressbook.shared,
|
#directorylist li.addressbook.shared,
|
||||||
#directorylist li.addressbook.other {
|
#directorylist li.addressbook.other {
|
||||||
|
|
|
@ -130,9 +130,8 @@ function rcube_kolab_notes_ui(settings)
|
||||||
var list = p.data;
|
var list = p.data;
|
||||||
if (list && list.id && !list.virtual) {
|
if (list && list.id && !list.virtual) {
|
||||||
me.notebooks[list.id] = list;
|
me.notebooks[list.id] = list;
|
||||||
var prop = { id:p.id, active:list.active?1:0 };
|
if (list.subscribed)
|
||||||
if (list.subscribed) prop.permanent = 1;
|
rcmail.http_post('list', { _do:'subscribe', _list:{ id:p.id, permanent:1 } });
|
||||||
rcmail.http_post('list', { _do:'subscribe', _list:prop });
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
notebookslist.addEventListener('search-complete', function(data) {
|
notebookslist.addEventListener('search-complete', function(data) {
|
||||||
|
|
|
@ -370,6 +370,10 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.notesview #notebooksbox .searchresults .listing li {
|
||||||
|
background-color: #c7e3ef;
|
||||||
|
}
|
||||||
|
|
||||||
.notesview #notebooksbox .searchresults a.listname {
|
.notesview #notebooksbox .searchresults a.listname {
|
||||||
padding-left: 36px;
|
padding-left: 36px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue