mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 17:23:19 -05:00
* Notebook cell toolbar additions - move up and move down added. Stubbed out related actions. Cleaned up component code. * Added new more actions menu item: Convert cell. * add move cell support in model * Schema Compare cleanup (#11418) * cleanup async and await stuff * remove awaits * remove more awaits * fix (#11437) * Add some unit tests for PyPiClient. (#11442) * handle invalid character in kubectl version output (#11460) * Add tests for azdata extension (#11423) * Add tests for azdata extension * Fail on stderr * Skip test for not implemented logic * Move executeCommand stub * Add missing packages * let semver to parse the version (#11463) * let semver to parse the version * check * Stop hardcoding python3 (#11464) * Add ConnectControllerDialog tests (#11443) * Automatically fix up arc controller URL * wip * Force tests to pass * Refactor * comment * adds role of button to all links that are buttons (#11465) * Merge from vscode 0a7364f00514c46c9caceece15e1f82f82e3712f * bump smoke extensions * bump node version in builds * bump smoke extensions * Add query-history and sql-assessment to recommended extensions (#11477) * First draft of outputProcessor tests (#11368) * First draft of outputProcessor tests * add return type for a function * pr feedback * comments and Spellings, getRandom ==> getRandomElement * pr feedback * pr feedback * Adds support for installing azdata on Linux (#11469) * Large cleanup of AzureCore - Introduction of getAccountSecurityToken and deprecation of getSecurityToken (#11446) * do a large cleanup of azurecore * Fix tests * Rework Device Code * Fix tests * Fix AE scenario * Fix firewall rule - clenaup logging * Shorthand syntax * Fix firewall tests * Start on tests for azureAuth * Add more tests * Address comments * Add a few more important tests * Don't throw error on old code * Fill in todo * Adding button plugin to table component (#10918) * Added delete plugin to table component * Arc - Remove Azure params from Postgres deployment (#11478) Co-authored-by: Brian Bergeron <brberger@microsoft.com> * tests for KernelsDropdown class (#11476) * add return type for a function * tests for KernelsDropdown class * remove inadvertent change * remove inadvertent change * formatting changes * pr feedback * pr feedback * implement review feedback (#11470) * fix sql proj sqlcmd table showing after loading profile when it shouldn't (#11479) * Feature/outer paths for project (#11445) * allow relative paths in project file outside of project folder * Adding some tests * Adding error string to loc strings * Fixed test * fix error message * PR comments and some more fixes * change userName to match what the azure account display name is (#11484) * change userName to match what the azure account display name is * Handle undefined value * Merge from vscode 8c426f9f3b6b18935cc6c2ec8aa6d45ccd88021e * recomment out integration tests * Fix/open book error (#11379) * add isNotebook param and showPreview option * showPreview changes * update OpenNotebookFolder to open a specific path * added test for showPreviewFile * test name typo * remove isNotebook from openBook * Add test coverage for dacpac wizard import flow (#11483) * Adding importConfig onPageEnter() test * Removing redundancy from dacpac wizard pages * promisifying file selection so it can be awaited in the test * removing debug prints * PR feedback * Remove all accounts regardless of failure in one account (#11431) * distro (#11487) * distro * distro * distro * distro * Adding icons to Database Projects' tree view (#11488) * Add images * Splitting to light and dark mode icons * Hooks up icons to treeItems * updating package.json with new icon and vbump * move icon loader before tree view created * Update Arc extension version and fix Controller connectivity status names (#11498) * Update connectivity mode names (cherry picked from commit f0aabcfa86d178cdf74470f9fdeded19718bcea2) * Bump package version (cherry picked from commit e08370539006c638d6e25c2f4f23fa2754a3377d) * deploy to single existing device (#11494) * deploy to single existing device * comments * Add versioning for accounts (#11497) * Add versioning for accounts * deletion value * Changes to getAccountSecurityToken (#11502) * Hook up convert cell * Fix tests * Add convert cell tests Co-authored-by: chlafreniere <hichise@gmail.com> Co-authored-by: Kim Santiago <31145923+kisantia@users.noreply.github.com> Co-authored-by: Maddy <12754347+MaddyDev@users.noreply.github.com> Co-authored-by: Cory Rivera <corivera@microsoft.com> Co-authored-by: Alan Ren <alanren@microsoft.com> Co-authored-by: Charles Gagnon <chgagnon@microsoft.com> Co-authored-by: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Co-authored-by: v-bbrady <60623315+v-bbrady@users.noreply.github.com> Co-authored-by: ADS Merger <andresse@microsoft.com> Co-authored-by: Arvind Ranasaria <ranasaria@outlook.com> Co-authored-by: Amir Omidi <amomidi@microsoft.com> Co-authored-by: Leila Lali <llali@microsoft.com> Co-authored-by: Brian Bergeron <brian.e.bergeron@gmail.com> Co-authored-by: Brian Bergeron <brberger@microsoft.com> Co-authored-by: Udeesha Gautam <46980425+udeeshagautam@users.noreply.github.com> Co-authored-by: Benjin Dubishar <benjin.dubishar@gmail.com>
616 lines
14 KiB
CSS
616 lines
14 KiB
CSS
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
.vs .codicon.settings {
|
|
background-image: url("settings.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.settings,
|
|
.hc-black .codicon.settings {
|
|
background-image: url("settings_inverse.svg");
|
|
}
|
|
|
|
.vs .codicon.backup,
|
|
.vs-dark .codicon.backup,
|
|
.hc-black .codicon.backup {
|
|
background: url("backup.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.restore,
|
|
.vs-dark .codicon.restore,
|
|
.hc-black .codicon.restore {
|
|
background: url("restore.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.database {
|
|
background: url("database.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs-dark .codicon.database,
|
|
.hc-black .codicon.database {
|
|
background: url("database_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.error,
|
|
.vs-dark .codicon.error,
|
|
.hc-black .codicon.error {
|
|
background: url("globalerror_red.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.file {
|
|
background: url("file.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs-dark .codicon.file,
|
|
.hc-black .codicon.file {
|
|
background: url("file_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.new-database {
|
|
background: url("new_database.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs-dark .codicon.new-database,
|
|
.hc-black .codicon.new-database {
|
|
background: url("new_database_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.server-page {
|
|
background: url("server_page.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs-dark .codicon.server-page,
|
|
.hc-black .codicon.server-page {
|
|
background: url("server_page_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.globalError,
|
|
.vs-dark .codicon.globalError,
|
|
.hc-black .codicon.globalError {
|
|
background: url("globalerror.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .sql.codicon.error,
|
|
.vs-dark .sql.codicon.error,
|
|
.hc-black .sql.codicon.error {
|
|
content: url("status_error.svg");
|
|
}
|
|
|
|
.vs .sql.codicon.warning,
|
|
.vs-dark .sql.codicon.warning,
|
|
.hc-black .sql.codicon.warning {
|
|
content: url("status_warning.svg");
|
|
}
|
|
|
|
.vs .sql.codicon.info,
|
|
.vs-dark .sql.codicon.info,
|
|
.hc-black .sql.codicon.info {
|
|
content: url("status_info.svg");
|
|
}
|
|
|
|
.vs .codicon.help {
|
|
content: url("help.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.help,
|
|
.hc-black .codicon.help {
|
|
content: url("help_inverse.svg");
|
|
}
|
|
|
|
.vs .codicon.success,
|
|
.vs-dark .codicon.success,
|
|
.hc-black .codicon.success {
|
|
content: url("status_success.svg");
|
|
}
|
|
|
|
.vs .codicon.canceled,
|
|
.vs-dark .codicon.canceled,
|
|
.hc-black .codicon.canceled {
|
|
content: url("status_cancelled.svg");
|
|
}
|
|
|
|
.vs .codicon.in-progress {
|
|
content: url("loading.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.in-progress,
|
|
.hc-black .codicon.in-progress {
|
|
content: url("loading_inverse.svg");
|
|
}
|
|
|
|
.vs .codicon.scriptToClipboard,
|
|
.vs-dark .codicon.scriptToClipboard,
|
|
.hc-black .codicon.scriptToClipboard {
|
|
background-image: url("script_to_clipboard.svg");
|
|
background-repeat: no-repeat;
|
|
background-position: 2px center;
|
|
}
|
|
|
|
.vs .codicon:not(.masked-icon).close,
|
|
.vs .codicon:not(.masked-icon).remove {
|
|
background: url('close.svg') center center no-repeat !important;
|
|
}
|
|
|
|
.vs-dark .codicon:not(.masked-icon).close,
|
|
.hc-black .codicon:not(.masked-icon).close,
|
|
.vs-dark .codicon.remove,
|
|
.hc-black .codicon.remove {
|
|
background: url("close_inverse.svg") center center no-repeat !important;
|
|
}
|
|
|
|
.vs .codicon.filter {
|
|
background: url("filter.svg") center center no-repeat !important;
|
|
}
|
|
|
|
.vs-dark .codicon.filter,
|
|
.hc-black .codicon.filter {
|
|
background: url("filter_inverse.svg") center center no-repeat !important;
|
|
}
|
|
|
|
.vs .codicon.filterLabel {
|
|
background-image: url("filter.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.filterLabel,
|
|
.hc-black .codicon.filterLabel {
|
|
background-image: url("filter_inverse.svg");
|
|
}
|
|
|
|
.vs .codicon.clear-filter {
|
|
background-image: url("clearfilter.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.clear-filter,
|
|
.hc-black .codicon.clear-filter {
|
|
background-image: url("clearfilter_inverse.svg");
|
|
}
|
|
|
|
.vs .codicon.warning-badge,
|
|
.vs-dark .codicon.warning-badge,
|
|
.hc-black .codicon.warning-badge {
|
|
background: url("status_warning.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.refresh,
|
|
.vs-dark .codicon.refresh,
|
|
.hc-black .codicon.refresh {
|
|
background: url("refresh.svg") no-repeat;
|
|
}
|
|
|
|
.hc-black .codicon.toggle-more,
|
|
.vs-dark .codicon.toggle-more {
|
|
background: url("ellipsis-inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.toggle-more {
|
|
background: url("ellipsis.svg") center center no-repeat;
|
|
}
|
|
|
|
.hc-black .codicon:not(.masked-icon).new,
|
|
.vs-dark .codicon:not(.masked-icon).new {
|
|
background: url("new_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon:not(.masked-icon).new {
|
|
background: url("new.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.new-query,
|
|
.vs-dark .codicon.new-query,
|
|
.hc-black .codicon.new-query {
|
|
background: url("newquery.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.info,
|
|
.hc-black .codicon.info,
|
|
.vs-dark .codicon.info {
|
|
background: url("info.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.edit,
|
|
.hc-black .codicon.edit,
|
|
.vs-dark .codicon.edit {
|
|
background: url("edit.svg") center center no-repeat;
|
|
}
|
|
|
|
.hc-black .codicon.pin,
|
|
.vs-dark .codicon.pin {
|
|
background: url("pin_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.pin {
|
|
background: url("pin.svg") center center no-repeat;
|
|
}
|
|
|
|
.hc-black .codicon.unpin,
|
|
.vs-dark .codicon.unpin {
|
|
background: url("unpin_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.unpin {
|
|
background: url("unpin.svg") center center no-repeat;
|
|
}
|
|
|
|
.hc-black .codicon.bookreport,
|
|
.vs-dark .codicon.bookreport {
|
|
background: url("book_inverse.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .codicon.bookreport {
|
|
background: url("book.svg") center center no-repeat;
|
|
}
|
|
|
|
.vs .sql.codicon.pause {
|
|
background-image: url("pause.svg");
|
|
}
|
|
|
|
.vs-dark .sql.codicon.pause,
|
|
.hc-black .sql.codicon.pause {
|
|
background-image: url("pause_inverse.svg");
|
|
}
|
|
|
|
.vs .sql.codicon.continue {
|
|
background-image: url("continue.svg");
|
|
}
|
|
|
|
.vs-dark .sql.codicon.continue,
|
|
.hc-black .sql.codicon.continue {
|
|
background-image: url("continue_inverse.svg");
|
|
}
|
|
|
|
.vs .sql.codicon.checked {
|
|
background-image: url("check.svg");
|
|
}
|
|
|
|
.vs-dark .sql.codicon.checked,
|
|
.hc-black .sql.codicon.checked {
|
|
background-image: url("check_inverse.svg");
|
|
}
|
|
|
|
.vs .sql.codicon.start {
|
|
background-image: url("start.svg");
|
|
}
|
|
|
|
.vs-dark .sql.codicon.start,
|
|
.hc-black .sql.codicon.start {
|
|
background-image: url("start_inverse.svg");
|
|
}
|
|
|
|
.vs .sql.codicon.stop {
|
|
background-image: url("stop.svg");
|
|
}
|
|
|
|
.vs-dark .sql.codicon.stop,
|
|
.hc-black .sql.codicon.stop {
|
|
background-image: url("stop_inverse.svg");
|
|
}
|
|
|
|
/* Notebook cells */
|
|
.codicon.toolbarIconRunInactive {
|
|
background-image: url("execute_cell_grey.svg");
|
|
}
|
|
|
|
.codicon.toolbarIconRun {
|
|
background-image: url("execute_cell.svg");
|
|
}
|
|
|
|
.codicon.toolbarIconRunError {
|
|
background-image: url("execute_cell_error.svg");
|
|
}
|
|
|
|
.codicon.toolbarIconStop {
|
|
background-image: url("stop_cell_solidanimation.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.toolbarIconRunInactive {
|
|
background-image: url("execute_cell_dark.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.toolbarIconRun {
|
|
background-image: url("execute_cell_white.svg");
|
|
}
|
|
|
|
.hc-black .codicon.toolbarIconRunInactive {
|
|
background-image: url("execute_cell_hc.svg");
|
|
}
|
|
|
|
.hc-black .codicon.toolbarIconRun {
|
|
background-image: url("execute_cell_orange_hc.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.toolbarIconStop,
|
|
.hc-black .codicon.toolbarIconStop {
|
|
background-image: url("stop_cell_solidanimation_inverse.svg");
|
|
}
|
|
|
|
/* Icons as masked elements for easy theme switching.
|
|
Includes non-masked style declarations. */
|
|
.masked-icon:before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
height: 20px;
|
|
width: 20px;
|
|
-webkit-mask-position: center;
|
|
-webkit-mask-repeat: no-repeat;
|
|
mask-position: center;
|
|
mask-repeat: no-repeat;
|
|
-webkit-mask-size: 50% 100%;
|
|
mask-size: 50% 100%;
|
|
}
|
|
|
|
.codicon.masked-icon.bold::before {
|
|
-webkit-mask-image: url("toolbar-bold.svg");
|
|
mask-image: url("toolbar-bold.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.italic::before {
|
|
-webkit-mask-image: url("toolbar-italic.svg");
|
|
mask-image: url("toolbar-italic.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.underline::before {
|
|
-webkit-mask-image: url("toolbar-underline.svg");
|
|
mask-image: url("toolbar-underline.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.highlight::before {
|
|
-webkit-mask-image: url("toolbar-highlight.svg");
|
|
mask-image: url("toolbar-highlight.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.code::before {
|
|
-webkit-mask-image: url("code.svg");
|
|
mask-image: url("code.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.insert-link::before {
|
|
-webkit-mask-image: url("toolbar-link.svg");
|
|
mask-image: url("toolbar-link.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.list::before {
|
|
-webkit-mask-image: url("toolbar-list.svg");
|
|
mask-image: url("toolbar-list.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.ordered-list::before {
|
|
-webkit-mask-image: url("toolbar-ordered-list.svg");
|
|
mask-image: url("toolbar-ordered-list.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.insert-image::before {
|
|
-webkit-mask-image: url("toolbar-image.svg");
|
|
mask-image: url("toolbar-image.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.split-toggle-on::before {
|
|
-webkit-mask-image: url("toolbar-preview-toggle-on.svg");
|
|
mask-image: url("toolbar-preview-toggle-on.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.split-toggle-off::before {
|
|
-webkit-mask-image: url("toolbar-preview-toggle-off.svg");
|
|
mask-image: url("toolbar-preview-toggle-off.svg");
|
|
}
|
|
|
|
.codicon.markdown {
|
|
-webkit-mask-image: url("markdown.svg");
|
|
mask-image: url("markdown.svg");
|
|
}
|
|
|
|
.codicon:not(.masked-icon).icon-expand-cells {
|
|
background-image: url("action-expand.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.icon-expand-cells:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url("action-expand.svg");
|
|
mask-image: url("action-expand.svg");
|
|
}
|
|
|
|
.codicon:not(.masked-icon).icon-collapse-cells {
|
|
background-image: url("action-collapse.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.icon-collapse-cells:before {
|
|
-webkit-mask-image: url("action-collapse.svg");
|
|
mask-image: url("action-collapse.svg");
|
|
}
|
|
|
|
.codicon:not(.masked-icon).icon-clear-results {
|
|
background-image: url("clear.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.icon-clear-results:before {
|
|
-webkit-mask-image: url("clear.svg");
|
|
mask-image: url("clear.svg");
|
|
}
|
|
|
|
.codicon:not(.masked-icon).icon-shield {
|
|
background-image: url("shield.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.icon-shield:before {
|
|
-webkit-mask-image: url("shield.svg");
|
|
mask-image: url("shield.svg");
|
|
}
|
|
|
|
.codicon:not(.masked-icon).icon-shield-x {
|
|
background-image: url("shield-x.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.icon-shield-x:before {
|
|
-webkit-mask-image: url("shield-x.svg");
|
|
mask-image: url("shield-x.svg");
|
|
}
|
|
|
|
.codicon:not(.masked-icon).packages {
|
|
background-image: url("packages.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.packages:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url("packages.svg");
|
|
mask-image: url("packages.svg");
|
|
}
|
|
|
|
.codicon.arrow-up {
|
|
background-image: url("chevron_up.svg");
|
|
}
|
|
|
|
.vs-dark .codicon.arrow-up,
|
|
.hc-black .codicon.arrow-up {
|
|
background-image: url("chevron_up_inverse.svg");
|
|
}
|
|
|
|
.codicon:not(.masked-icon).arrow-down {
|
|
background-image: url("chevron_down.svg");
|
|
}
|
|
|
|
.vs-dark .codicon:not(.masked-icon).arrow-down,
|
|
.hc-black .codicon:not(.masked-icon).arrow-down {
|
|
background-image: url("chevron_down_inverse.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.arrow-down {
|
|
background-image: none;
|
|
-webkit-mask-image: url("chevron_down.svg");
|
|
mask-image: url("chevron_down.svg");
|
|
}
|
|
|
|
.vs .codicon:not(.masked-icon).new-blue {
|
|
background-image: url('new-blue.svg');
|
|
}
|
|
|
|
.vs .codicon:not(.masked-icon).start-outline {
|
|
background-image: url('start-outline.svg');
|
|
}
|
|
|
|
/* Masked element inside pseudo element */
|
|
.masked-pseudo {
|
|
background-image: none !important;
|
|
}
|
|
|
|
.masked-pseudo:before,
|
|
.masked-pseudo-after:after {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
-webkit-mask-position: center;
|
|
-webkit-mask-repeat: no-repeat;
|
|
mask-position: center;
|
|
mask-repeat: no-repeat;
|
|
-webkit-mask-size: 50% 100%;
|
|
mask-size: 50% 100%;
|
|
}
|
|
|
|
.masked-pseudo:before {
|
|
height: 23px;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 30px;
|
|
}
|
|
|
|
.masked-pseudo-after:after {
|
|
height: 23px;
|
|
right: 0;
|
|
top: 2px;
|
|
width: 30px;
|
|
}
|
|
|
|
.masked-pseudo-after.dropdown-arrow:after {
|
|
background-image: none;
|
|
-webkit-mask-image: url("chevron_down.svg");
|
|
mask-image: url("chevron_down.svg");
|
|
}
|
|
|
|
.masked-pseudo.add-new:before {
|
|
-webkit-mask-image: url("new.svg");
|
|
mask-image: url("new.svg");
|
|
}
|
|
|
|
.masked-pseudo.start-outline:before {
|
|
-webkit-mask-image: url("start-outline.svg");
|
|
mask-image: url("start-outline.svg");
|
|
}
|
|
|
|
.masked-pseudo.code:before {
|
|
-webkit-mask-image: url("code.svg");
|
|
mask-image: url("code.svg");
|
|
}
|
|
|
|
.masked-pseudo.markdown:before {
|
|
-webkit-mask-image: url("markdown.svg");
|
|
mask-image: url("markdown.svg");
|
|
}
|
|
|
|
.codicon.masked-icon.new:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url('new.svg');
|
|
mask-image: url('new.svg');
|
|
}
|
|
|
|
.codicon.masked-icon.close:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url('close-blue.svg');
|
|
mask-image: url('close-blue.svg');
|
|
}
|
|
|
|
.codicon.masked-icon.edit:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url('edit.svg');
|
|
mask-image: url('edit.svg');
|
|
}
|
|
.codicon.masked-icon.move-up:before {
|
|
transform: scale(-1);
|
|
background-image: none;
|
|
-webkit-mask-image: url('down-arrow-blue.svg');
|
|
mask-image: url('down-arrow-blue.svg');
|
|
}
|
|
.codicon.masked-icon.move-down:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url('down-arrow-blue.svg');
|
|
mask-image: url('down-arrow-blue.svg');
|
|
}
|
|
|
|
.codicon.masked-icon.delete:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url('garbage-can-blue.svg');
|
|
mask-image: url('garbage-can-blue.svg');
|
|
}
|
|
|
|
.codicon.masked-icon.more:before {
|
|
background-image: none;
|
|
-webkit-mask-image: url('ellipsis-blue.svg');
|
|
mask-image: url('ellipsis-blue.svg');
|
|
}
|
|
|
|
.database-colored.codicon {
|
|
background-image: url("database_colored.svg");
|
|
}
|
|
|
|
.book.codicon {
|
|
-webkit-mask-image: url("book_image.svg");
|
|
-webkit-mask-repeat: no-repeat;
|
|
-webkit-mask-position: 50% 50%;
|
|
}
|
|
|
|
.small {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.medium {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.large {
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|