Fix Tabs style

This commit is contained in:
Sevo Kukol 2023-09-13 11:23:43 +02:00
parent e27a28a04f
commit 39a7765aef
3 changed files with 10 additions and 1 deletions

View File

@ -2646,6 +2646,11 @@ a:link {
width: @ActiveTabWidth;
}
.nav-tabs > li.active > .tabNavContentContainer > .tab_Content > .tabNavText {
font-weight: "bolder";
border-bottom: "2px solid rgba(0,120,212,1)";
}
.nav-tabs > li.active:focus > .tabNavContentContainer {
.focus();
}

View File

@ -58,6 +58,11 @@ body {
width: @ActiveTabWidth;
}
.nav-tabs>li.active>.tabNavContentContainer>.tab_Content>.tabNavText {
font-weight: "bolder";
border-bottom: 2px solid @FabricAccentMedium;
}
.resourceTree {
padding: 12px;

View File

@ -129,7 +129,6 @@ function TabNav({ tab, active, tabKind }: { tab?: Tab; active: boolean; tabKind?
</span>
<span
className="tabNavText"
style={active ? { fontWeight: "bolder", borderBottom: "2px solid rgba(0,120,212,1)" } : {}}
>
{useObservable(tab?.tabTitle || getReactTabTitle())}
</span>