Skip to content

Commit

Permalink
fixes #2131 changing the icon prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
LintyDev committed Mar 8, 2024
1 parent 179a69c commit 5da20bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion themes/default/css/search.css
Expand Up @@ -548,7 +548,7 @@
text-align: left;
}

.search-result-item .icon-plus-circled{
.search-result-item .gallery-icon-plus-circled{
margin-left: auto;
cursor: pointer;
}
Expand Down
2 changes: 1 addition & 1 deletion themes/default/js/mcs.js
Expand Up @@ -742,7 +742,7 @@ function fill_results(cats) {
if (!related_categories_ids.includes(cat.id)) {
$("#searchResult").append(
"<div class='search-result-item' id="+ cat.id + ">" +
"<span class='search-result-path'>" + cat.name +"</span><span id="+ cat.id + " class='icon-plus-circled item-add'></span>" +
"<span class='search-result-path'>" + cat.name +"</span><span id="+ cat.id + " class='gallery-icon-plus-circled item-add'></span>" +
"</div>"
);

Expand Down

0 comments on commit 5da20bf

Please sign in to comment.