forked from FooSoft/yomichan
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force scan resolution "character" for ja, zh, yue, and ko (#1542)
* Force scan resolution "character" for ja, zh, yue, ko * Split out visibility modifiers * Hide scan resolution setting for jp, zh, yue, ko * Remove unused visibility modifiers css from search-settings --------- Signed-off-by: Kuuuube <[email protected]>
- Loading branch information
Showing
5 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
:root:not([data-debug=true]) .debug-only { | ||
display: none; | ||
} | ||
:root:not([data-advanced=true]) .advanced-only { | ||
display: none; | ||
} | ||
:root:not([data-advanced=false]) .basic-only { | ||
display: none; | ||
} | ||
:root:not([data-language=ja]):not([data-language=zh]):not([data-language=yue]) .jpzhyue-only { | ||
display: none; | ||
} | ||
:root:is([data-language=ja], [data-language=zh], [data-language=yue], [data-language=ko]) .not-jpzhyueko { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters