Fixed parent directory icon and folder breadcrumb naming

This commit is contained in:
Kenneth Jao 2024-11-09 13:02:46 +08:00
parent 1a235f1893
commit 47604a2d00
2 changed files with 6 additions and 6 deletions

View File

@ -474,7 +474,7 @@ footer#section-footer .row {
padding-left: 2.2rem;
}
tbody a[href*="."]:before, tbody a[href*="/"]:before {
tbody a[href*="."]:before {
background: url('../icons/file-blank.svg') left center/1.1rem no-repeat;
content: "";
width: 1.5rem;
@ -515,7 +515,7 @@ footer#section-footer .row {
padding-left: 3rem;
}
tbody a[href*="."]:before, tbody a[href*="/"]:before {
tbody a[href*="."]:before {
background: url('../icons/file-blank.svg') left center/1.1rem no-repeat;
content: "";
width: 1.5rem;
@ -544,11 +544,11 @@ tbody a[href*="/"]:after {
content: "";
}
tbody a[href$="/"]:before, tbody a[href*="/?"]:before {
tbody a[href$="/"]:before {
background: url('../icons/folder.svg') left center/1.1rem no-repeat;
}
tbody a[href$="../"]:before {
tbody a[href*="../"]:before {
background: url('../icons/angle-left.svg') left center/0.6rem no-repeat;
top: -0.5rem;
left: 1.2em;

View File

@ -21,7 +21,7 @@ var TITLEIZE = false;
* Underscore string's titleize.
*/
function titleize(str) {
return decodeURI(str).toLowerCase().replace(/(?:^|\s|-)\S/g, c => c.toUpperCase());
return decodeURIComponent(str).toLowerCase().replace(/(?:^|\s|-)\S/g, c => c.toUpperCase());
}
/**
@ -29,7 +29,7 @@ var TITLEIZE = false;
* current location.
*/
function setTitle() {
let cleanPath = decodeURI(window.location.pathname.replace(/\/$/g, '')),
let cleanPath = decodeURIComponent(window.location.pathname.replace(/\/$/g, '')),
titleText,
breadcrumbHtml = '',
index = 0,