mirror of
https://github.com/YuzuZensai/Crowdin-Localization-Tools.git
synced 2026-01-06 04:33:03 +00:00
🐛 fix: unreadable text color
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"latest": "1.1.1"
|
||||
"latest": "1.1.2"
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// ==UserScript==
|
||||
// @name Crowdin Localization Tools
|
||||
// @namespace https://yuzu.kirameki.cafe/
|
||||
// @version 1.1.1
|
||||
// @version 1.1.2
|
||||
// @description A tool for translating Crowdin projects using a CSV file
|
||||
// @author Yuzu (YuzuZensai)
|
||||
// @match https://crowdin.com/editor/*
|
||||
@@ -45,7 +45,7 @@ const CONFIG = {
|
||||
fuzzyThreshold: 0.7,
|
||||
|
||||
metadata: {
|
||||
version: "1.1.1",
|
||||
version: "1.1.2",
|
||||
repository: "https://github.com/YuzuZensai/Crowdin-Localization-Tools",
|
||||
authorGithub: "https://github.com/YuzuZensai",
|
||||
},
|
||||
@@ -1406,6 +1406,7 @@ function TranslatorTool() {
|
||||
table.style.width = "100%";
|
||||
table.style.borderCollapse = "collapse";
|
||||
table.style.tableLayout = "fixed";
|
||||
table.style.color = "#000";
|
||||
|
||||
// Header
|
||||
var thead = document.createElement("thead");
|
||||
@@ -1465,6 +1466,7 @@ function TranslatorTool() {
|
||||
container.style.display = "flex";
|
||||
container.style.flexDirection = "column";
|
||||
container.style.gap = "4px";
|
||||
container.style.color = "#000";
|
||||
|
||||
// Add category chip first if in note column
|
||||
if (!isSource && !isTarget && category) {
|
||||
|
||||
Reference in New Issue
Block a user