diff --git a/HKCheckCompletion.js b/HKCheckCompletion.js index 1687f63..317db28 100644 --- a/HKCheckCompletion.js +++ b/HKCheckCompletion.js @@ -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; diff --git a/style.css b/style.css index 130857d..046fb04 100644 --- a/style.css +++ b/style.css @@ -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; }