fix the server action icon's size issue (#20906)

* fix the server action icon's size issue

* move the css styles to sql folder
This commit is contained in:
Alan Ren
2022-10-20 19:31:47 -07:00
committed by GitHub
parent 1ac141b381
commit 5c8644b94b

View File

@@ -39,3 +39,11 @@
.monaco-workbench.hc-black .actions-container .action-label.server-page {
background-image: url('server_page_inverse.svg') !important;
}
/* styles for action labels - without these, the buttons for the Servers view will not be sized correctly */
.monaco-pane-view .pane > .pane-header > .actions .action-label.icon,
.monaco-pane-view .pane > .pane-header > .actions .action-label.codicon {
background-size: 16px;
background-position: center center;
background-repeat: no-repeat;
}