corrections for 2278347,2278096 and fix for 2264174

This commit is contained in:
Sampath
2023-03-29 21:36:39 +05:30
parent f27706bc37
commit da2ba243fb
3 changed files with 3 additions and 3 deletions

View File

@@ -2577,7 +2577,7 @@ a:link {
font-style: italic; font-style: italic;
} }
.querydropdown.placeholderVisible::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ .querydropdown.placeholderVisible::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: #000; color: #403f3f;
opacity: 1; opacity: 1;
} }

View File

@@ -7,8 +7,7 @@
} }
.treeNodeHeader { .treeNodeHeader {
// padding: @SmallSpace 2px; margin: 1px;
margin: 2px;
cursor: pointer; cursor: pointer;
display: flex; display: flex;

View File

@@ -92,6 +92,7 @@ function TabNav({ tab, active, tabKind }: { tab?: Tab; active: boolean; tabKind?
} }
}} }}
className={active ? "active tabList" : "tabList"} className={active ? "active tabList" : "tabList"}
style={active ? { fontWeight: "bolder" } : {}}
title={useObservable(tab?.tabPath || ko.observable(""))} title={useObservable(tab?.tabPath || ko.observable(""))}
aria-selected={active} aria-selected={active}
aria-expanded={active} aria-expanded={active}