Skip to content
Snippets Groups Projects
Commit b99a06b0 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Der Pin eines Ausgewähltes Ergebnis wird jetzt immer im Vordergrund angezeigt.

parent 439128a9
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,7 @@ $.each(searchResults, function(index, value) {
}
});
el.css("transform", "scale(1.5)");
el.parent().css("z-index", "20000");
res.css("background-color", "#f2dede");
res.css("border-color", "#a94442");
};
......@@ -87,6 +88,7 @@ $.each(searchResults, function(index, value) {
}
});
el.css("transform", "scale(1)");
el.parent().css("z-index", "0");
res.css("background-color", "");
res.css("border-color", "");
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment