mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-18 11:03:18 -04:00
SQL Operations Studio Public Preview 1 (0.23) release source code
This commit is contained in:
174
src/sql/media/icons/common-icons.css
Normal file
174
src/sql/media/icons/common-icons.css
Normal file
@@ -0,0 +1,174 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
.vs .icon.backup {
|
||||
background: url("backup.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs-dark .icon.backup,
|
||||
.hc-black .icon.backup {
|
||||
background: url("backup_inverse.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.restore {
|
||||
background: url("restore.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs-dark .icon.restore,
|
||||
.hc-black .icon.restore {
|
||||
background: url("restore_inverse.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.database {
|
||||
background: url("database.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs-dark .icon.database,
|
||||
.hc-black .icon.database {
|
||||
background: url("database_inverse.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.file {
|
||||
background: url("file.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs-dark .icon.file,
|
||||
.hc-black .icon.file {
|
||||
background: url("file_inverse.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.new-database {
|
||||
background: url("new_database.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs-dark .icon.new-database,
|
||||
.hc-black .icon.new-database {
|
||||
background: url("new_database_inverse.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.server-page {
|
||||
background: url("server_page.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs-dark .icon.server-page,
|
||||
.hc-black .icon.server-page {
|
||||
background: url("server_page_inverse.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.error,
|
||||
.vs-dark .icon.error,
|
||||
.hc-black .icon.error {
|
||||
content: url("status_error.svg");
|
||||
}
|
||||
|
||||
.vs .icon.warning,
|
||||
.vs-dark .icon.warning,
|
||||
.hc-black .icon.warning {
|
||||
content: url("status_warning.svg");
|
||||
}
|
||||
|
||||
.vs .icon.info,
|
||||
.vs-dark .icon.info,
|
||||
.hc-black .icon.info {
|
||||
content: url("status_info.svg");
|
||||
}
|
||||
|
||||
.vs .icon.success,
|
||||
.vs-dark .icon.success,
|
||||
.hc-black .icon.success {
|
||||
content: url("status_success.svg");
|
||||
}
|
||||
|
||||
.vs .icon.cancelled,
|
||||
.vs-dark .icon.cancelled,
|
||||
.hc-black .icon.cancelled {
|
||||
content: url("status_cancelled.svg");
|
||||
}
|
||||
|
||||
.vs .icon.in-progress {
|
||||
content: url("loading.svg");
|
||||
}
|
||||
|
||||
.vs-dark .icon.in-progress,
|
||||
.hc-black .icon.in-progress {
|
||||
content: url("loading_inverse.svg");
|
||||
}
|
||||
|
||||
.vs .icon.scriptToClipboard,
|
||||
.vs-dark .icon.scriptToClipboard,
|
||||
.hc-black .icon.scriptToClipboard {
|
||||
content: url('script_to_clipboard.svg');
|
||||
width: auto !important;
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.vs .icon.close {
|
||||
background-image: url('close.svg');
|
||||
}
|
||||
|
||||
.vs-dark .icon.close,
|
||||
.hc-black .icon.close {
|
||||
background-image: url('close-dark.svg');
|
||||
}
|
||||
|
||||
.vs .icon.filter {
|
||||
background: url("filter.svg") center center no-repeat !important;
|
||||
}
|
||||
|
||||
.vs-dark .icon.filter,
|
||||
.hc-black .icon.filter {
|
||||
background: url("filter_inverse.svg") center center no-repeat !important;
|
||||
}
|
||||
|
||||
.vs .icon.remove {
|
||||
background: url("remove.svg") center center no-repeat !important;
|
||||
}
|
||||
|
||||
.vs-dark .icon.remove,
|
||||
.hc-black .icon.remove {
|
||||
background: url("remove_inverse.svg") center center no-repeat !important;
|
||||
}
|
||||
|
||||
.vs .icon.warning-badge,
|
||||
.vs-dark .icon.warning-badge,
|
||||
.hc-black .icon.warning-badge {
|
||||
background: url("status_warning.svg") center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.refresh {
|
||||
background-image: url('refresh.svg');
|
||||
}
|
||||
|
||||
.vs-dark .icon.refresh,
|
||||
.hc-black .icon.refresh {
|
||||
background-image: url('refresh_inverse.svg');
|
||||
}
|
||||
|
||||
.hc-black .icon.toggle-more,
|
||||
.vs-dark .icon.toggle-more {
|
||||
background: url('ellipsis-inverse.svg') center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.toggle-more {
|
||||
background: url('ellipsis.svg') center center no-repeat;
|
||||
}
|
||||
|
||||
.hc-black .icon.new-query,
|
||||
.vs-dark .icon.new-query {
|
||||
background: url('newquery_inverse.svg') center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.new-query {
|
||||
background: url('newquery.svg') center center no-repeat;
|
||||
}
|
||||
|
||||
.hc-black .icon.configure-dashboard,
|
||||
.vs-dark .icon.configure-dashboard {
|
||||
background: url('configdashboard_inverse.svg') center center no-repeat;
|
||||
}
|
||||
|
||||
.vs .icon.configure-dashboard {
|
||||
background: url('configdashboard.svg') center center no-repeat;
|
||||
}
|
||||
Reference in New Issue
Block a user