From 43daeca533a2bd5c259e2ffaaea309c3053c4734 Mon Sep 17 00:00:00 2001 From: dxuian Date: Mon, 9 Sep 2024 14:46:49 +0530 Subject: [PATCH] fixed css stoke overwrite issue --- .gitignore | 1 + .vscode/settings.json | 22 +++++++++++++++++++++- src/styles/ui.css | 4 ++-- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 150d50708..b52b5e5ed 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ dist/ coverage/ .nyc_output/ .vscode/launch.json +.vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json index 5d01b0ef3..8f037a492 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -37,5 +37,25 @@ "typeof", "Unmergeable", "viewports" - ] + ], + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#eb5947", + "activityBar.background": "#eb5947", + "activityBar.foreground": "#15202b", + "activityBar.inactiveForeground": "#15202b99", + "activityBarBadge.background": "#19e630", + "activityBarBadge.foreground": "#15202b", + "commandCenter.border": "#e7e7e799", + "sash.hoverBorder": "#eb5947", + "statusBar.background": "#e62f19", + "statusBar.foreground": "#e7e7e7", + "statusBarItem.hoverBackground": "#eb5947", + "statusBarItem.remoteBackground": "#e62f19", + "statusBarItem.remoteForeground": "#e7e7e7", + "titleBar.activeBackground": "#e62f19", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveBackground": "#e62f1999", + "titleBar.inactiveForeground": "#e7e7e799" + }, + "peacock.color": "#e62f19" } diff --git a/src/styles/ui.css b/src/styles/ui.css index d84237b5c..4f4c16828 100644 --- a/src/styles/ui.css +++ b/src/styles/ui.css @@ -78,8 +78,8 @@ max-height: 100%; } - path { - stroke: currentColor; + path:not([stroke]) { + stroke: currentColor; }