fixed Dash Slash/Great Slash

This commit is contained in:
ReznoRMichael 2020-09-14 00:28:49 +02:00
parent 12cb99616b
commit 85ee203790
2 changed files with 15 additions and 14 deletions

View file

@ -258,8 +258,8 @@ const HK_VESSELFRAGMENTS_WORLD = {
};
const HK_NAILARTS = {
hasUpwardSlash: ["Great Slash", "Nailmaster Sheo: Greenpath"],
hasDashSlash: ["Dash Slash", "Nailmaster Oro: Kingdom's Edge, 800 Geo"],
hasDashSlash: ["Great Slash", "Nailmaster Sheo: Greenpath"],
hasUpwardSlash: ["Dash Slash", "Nailmaster Oro: Kingdom's Edge, 800 Geo"],
hasCyclone: ["Cyclone Slash", " Nailmaster Mato: Howling Cliffs"],
};
@ -516,16 +516,14 @@ function FillHTML(divId, textPrefix = "Unknown Completion Element: ", textSuffix
}
/**
* Switches global variables to a "completed" symbol
* @param {string} textData Optional completion name for use in HTML
* Switches global variable to a "completed" symbol
*/
function CurrentDataTrue() {
completionSymbol = SYMBOL_TRUE;
}
/**
* Switches global variables to a "not completed" symbol
* @param {string} textData Optional completion name for use in HTML
* Switches global variable to a "not completed" symbol
*/
function CurrentDataFalse() {
completionSymbol = SYMBOL_FALSE;

View file

@ -34,24 +34,27 @@ body {
margin: 0;
}
body::-webkit-scrollbar {
body::-webkit-scrollbar,
textarea::-webkit-scrollbar {
width: 8px;
height: 8px;
}
body::-webkit-scrollbar-track {
body::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track,
body::-webkit-scrollbar-track-piece,
textarea::-webkit-scrollbar-track-piece,
textarea::-webkit-resizer {
background-color: #040813;
}
body::-webkit-scrollbar-track-piece {
background-color: #040813;
}
body::-webkit-scrollbar-thumb {
body::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
background-color: #1e4d6c;
}
body::-webkit-scrollbar-thumb:hover {
body::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover {
background-color: #2e5d7c;
}