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 = { const HK_NAILARTS = {
hasUpwardSlash: ["Great Slash", "Nailmaster Sheo: Greenpath"], hasDashSlash: ["Great Slash", "Nailmaster Sheo: Greenpath"],
hasDashSlash: ["Dash Slash", "Nailmaster Oro: Kingdom's Edge, 800 Geo"], hasUpwardSlash: ["Dash Slash", "Nailmaster Oro: Kingdom's Edge, 800 Geo"],
hasCyclone: ["Cyclone Slash", " Nailmaster Mato: Howling Cliffs"], 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 * Switches global variable to a "completed" symbol
* @param {string} textData Optional completion name for use in HTML
*/ */
function CurrentDataTrue() { function CurrentDataTrue() {
completionSymbol = SYMBOL_TRUE; completionSymbol = SYMBOL_TRUE;
} }
/** /**
* Switches global variables to a "not completed" symbol * Switches global variable to a "not completed" symbol
* @param {string} textData Optional completion name for use in HTML
*/ */
function CurrentDataFalse() { function CurrentDataFalse() {
completionSymbol = SYMBOL_FALSE; completionSymbol = SYMBOL_FALSE;

View file

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