Skip to content
Snippets Groups Projects
Commit 80452a15 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixed tiny issues in search history UI

parent ee0e6676
No related branches found
No related tags found
No related merge requests found
......@@ -424,6 +424,17 @@ nav input[type=text]:focus + #searchicon {
white-space: nowrap;
}
#autocomplete p {
cursor: default;
line-height: 36px;
overflow: hidden;
padding: 0 24px;
text-overflow: ellipsis;
white-space: nowrap;
font-style: italic;
color: #646464;
}
#autocomplete li .icon {
border-radius: 12px;
height: 24px;
......
......@@ -215,6 +215,9 @@ var update_history = function () {
container.append(render_history_item(i, history[i]));
attach_history_item($("#history"+i));
}
if (history.length == 0) {
container.append("<p>No search history available</p>");
}
};
var attach_history_item = function (elem) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment