Skip to content

Commit

Permalink
fix(css): corrected images path
Browse files Browse the repository at this point in the history
This is broken since 3a87420 (#12454)
  • Loading branch information
nijel committed Dec 4, 2024
1 parent d2b1c9f commit 7dc894d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions weblate/static/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -377,19 +377,19 @@ td .list-group {
}

th .sort-icon.sort-up {
background-image: url("sort/up.svg");
background-image: url("../sort/up.svg");
}

th .sort-icon.sort-down {
background-image: url("sort/down.svg");
background-image: url("../sort/down.svg");
}

th:hover .sort-icon {
background-image: url("sort/hover-down.svg");
background-image: url("../sort/hover-down.svg");
}

th:hover .sort-icon.sort-up {
background-image: url("sort/hover-up.svg");
background-image: url("../sort/hover-up.svg");
}

.asteriskField {
Expand Down

0 comments on commit 7dc894d

Please sign in to comment.