mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-13 03:28:33 -05:00
Found numerous errors where icons weren't rendering correctly. - Anything that's an action must have CSS using "codicon" not "icon" since VSCode sets the "codicon" class automatically. This affected Agent view in particular, but also: - acounts view - new tab view in dashboard - many more - Anything referencing the common-icons.css icons needed updating. This hid help tooltip text in FormContainer UI for example. - Finally I tried to convert all references from icon -> codicon, even when the CSS was technically correct. This was done for maintainability reasons - from now on always add codicon. Fixes #7827
15 lines
664 B
CSS
15 lines
664 B
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
/* Icons for various account actions */
|
|
.vs .action-item .codicon.add-linked-account-action {
|
|
background-image: url('new_account.svg');
|
|
}
|
|
|
|
.vs-dark .action-item .codicon.add-linked-account-action,
|
|
.hc-black .action-item .codicon.add-linked-account-action {
|
|
background-image: url('new_account_inverse.svg');
|
|
}
|