mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
fix tab style in hc mode (#22975)
This commit is contained in:
@@ -439,11 +439,19 @@ export class PanelComponent extends Disposable implements IThemable {
|
|||||||
|
|
||||||
if (styles.selectedTabContrastBorder) {
|
if (styles.selectedTabContrastBorder) {
|
||||||
content.push(`
|
content.push(`
|
||||||
|
.tabbedPanel > .title .tabList .tab-header:focus,
|
||||||
.tabbedPanel > .title .tabList .tab-header.selected {
|
.tabbedPanel > .title .tabList .tab-header.selected {
|
||||||
outline: 1px solid;
|
outline-width: 1px;
|
||||||
outline-offset: -3px;
|
outline-offset: -3px;
|
||||||
outline-color: ${styles.selectedTabContrastBorder};
|
outline-color: ${styles.selectedTabContrastBorder};
|
||||||
}
|
}
|
||||||
|
.tabbedPanel > .title .tabList .tab-header.selected {
|
||||||
|
outline-style: dashed;
|
||||||
|
}
|
||||||
|
.tabbedPanel > .title .tabList .tab-header:focus,
|
||||||
|
.tabbedPanel > .title .tabList .tab-header.selected:focus {
|
||||||
|
outline-style: solid;
|
||||||
|
}
|
||||||
`);
|
`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user