SQL Operations Studio Public Preview 1 (0.23) release source code
1
src/sql/media/icons/backup.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#231f20;}</style></defs><title>backup_16x16</title><path class="cls-1" d="M12.11,13.69h1c0,1.51-3.36,2.2-6.48,2.2S.15,15.2.15,13.69V2.18C.25.55,4.26.11,6.63.11s6.48.45,6.48,2.13h-1C12,1.86,10,1.11,6.63,1.11s-5.37.75-5.48,1.14V13.69c0,.36,2,1.2,5.48,1.2S12.07,14,12.11,13.69Z"/><path class="cls-1" d="M13.45,12.07H11.82V6.37L9.38,8.81v-2l3.26-3.25,3.26,3.25v2L13.45,6.37Z"/></svg>
|
||||
|
After Width: | Height: | Size: 497 B |
1
src/sql/media/icons/backup_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>backup_inverse_16x16</title><path class="cls-1" d="M12.11,13.69h1c0,1.51-3.36,2.2-6.48,2.2S.15,15.2.15,13.69V2.18C.25.55,4.26.11,6.63.11s6.48.45,6.48,2.13h-1C12,1.86,10,1.11,6.63,1.11s-5.37.75-5.48,1.14V13.69c0,.36,2,1.2,5.48,1.2S12.07,14,12.11,13.69Z"/><path class="cls-1" d="M13.45,12.07H11.82V6.37L9.38,8.81v-2l3.26-3.25,3.26,3.25v2L13.45,6.37Z"/></svg>
|
||||
|
After Width: | Height: | Size: 502 B |
1
src/sql/media/icons/close-dark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="3 3 16 16" enable-background="new 3 3 16 16"><polygon fill="#C5C5C5" points="12.597,11.042 15.4,13.845 13.844,15.4 11.042,12.598 8.239,15.4 6.683,13.845 9.485,11.042 6.683,8.239 8.238,6.683 11.042,9.486 13.845,6.683 15.4,8.239"/></svg>
|
||||
|
After Width: | Height: | Size: 307 B |
1
src/sql/media/icons/close.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="3 3 16 16" enable-background="new 3 3 16 16"><polygon fill="#424242" points="12.597,11.042 15.4,13.845 13.844,15.4 11.042,12.598 8.239,15.4 6.683,13.845 9.485,11.042 6.683,8.239 8.238,6.683 11.042,9.486 13.845,6.683 15.4,8.239"/></svg>
|
||||
|
After Width: | Height: | Size: 307 B |
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;
|
||||
}
|
||||
1
src/sql/media/icons/configdashboard.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><title>configure_dashboard</title><path d="M16,0V4H15V1.71L10.5,6.2l-3-3L0,10.71V9.29L7.5,1.8l3,3L14.29,1H12V0Zm-.12,10.93-1,.4a2.75,2.75,0,0,1,.06.33,3,3,0,0,1,0,.68,2.71,2.71,0,0,1-.06.33l1,.4L15.5,14l-1-.4a3,3,0,0,1-.95.95l.4,1-.92.38-.4-1-.33.06L12,15l-.34,0-.33-.06-.4,1L10,15.5l.4-1a2.93,2.93,0,0,1-.95-.95l-1,.4-.38-.92,1-.4a3.25,3.25,0,0,1,0-1.34l-1-.4L8.49,10l1,.4a2.83,2.83,0,0,1,.95-.95l-.4-1,.92-.38.4,1a3.25,3.25,0,0,1,1.34,0l.4-1,.92.38-.4,1a3,3,0,0,1,.53.42,3,3,0,0,1,.42.53l1-.4ZM12,14a1.94,1.94,0,0,0,.78-.16,2,2,0,0,0,1.07-1.07,2,2,0,0,0,0-1.55,2,2,0,0,0-1.07-1.07,2,2,0,0,0-1.55,0,2,2,0,0,0-1.07,1.07,2,2,0,0,0,0,1.55,2,2,0,0,0,1.07,1.07A1.94,1.94,0,0,0,12,14Z"/></svg>
|
||||
|
After Width: | Height: | Size: 781 B |
1
src/sql/media/icons/configdashboard_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{font-size:12px;font-family:FullMDL2Assets, Full MDL2 Assets;}.cls-1,.cls-2{fill:#fff;}</style></defs><title>manage_inverse_16x16 </title><text class="cls-1" transform="translate(0.01 11.59)"> </text><path class="cls-2" d="M16,0V4H15V1.71L10.5,6.2l-3-3L0,10.71V9.29L7.5,1.8l3,3L14.29,1H12V0Zm-.12,10.93-1,.4a2.75,2.75,0,0,1,.06.33,3,3,0,0,1,0,.68,2.71,2.71,0,0,1-.06.33l1,.4L15.5,14l-1-.4a3,3,0,0,1-.95.95l.4,1-.92.38-.4-1-.33.06L12,15l-.34,0-.33-.06-.4,1L10,15.5l.4-1a2.93,2.93,0,0,1-.95-.95l-1,.4-.38-.92,1-.4a3.25,3.25,0,0,1,0-1.34l-1-.4L8.49,10l1,.4a2.83,2.83,0,0,1,.95-.95l-.4-1,.92-.38.4,1a3.25,3.25,0,0,1,1.34,0l.4-1,.92.38-.4,1a3,3,0,0,1,.53.42,3,3,0,0,1,.42.53l1-.4ZM12,14a1.94,1.94,0,0,0,.78-.16,2,2,0,0,0,1.07-1.07,2,2,0,0,0,0-1.55,2,2,0,0,0-1.07-1.07,2,2,0,0,0-1.55,0,2,2,0,0,0-1.07,1.07,2,2,0,0,0,0,1.55,2,2,0,0,0,1.07,1.07A1.94,1.94,0,0,0,12,14Z"/></svg>
|
||||
|
After Width: | Height: | Size: 980 B |
1
src/sql/media/icons/database.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.07 15.91"><defs><style>.cls-1{fill:#231f20;}</style></defs><title>Database@2x</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M6.53,0C4.13,0,.11.45,0,2.12V13.66c0,1.77,4.1,2.25,6.53,2.25s6.54-.48,6.54-2.25V2.12C13,.45,8.94,0,6.53,0ZM12,13.66c-.14.39-2.18,1.16-5.45,1.16S1.2,14,1.09,13.66V3.49a14.55,14.55,0,0,0,5.44.87A14.57,14.57,0,0,0,12,3.49ZM12,2.18c-.18.38-2.19,1.09-5.45,1.09S1.32,2.58,1.09,2.19c.23-.39,2.22-1.09,5.44-1.09s5.26.72,5.45,1.06h0Z"/><polygon class="cls-1" points="11.99 2.17 11.98 2.18 11.98 2.15 11.99 2.17"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 656 B |
1
src/sql/media/icons/database_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13.07 15.91"><defs><style>.cls-1{fill:#fff;}</style></defs><title>Database_Inverse@2x</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M6.53,0C4.13,0,.11.45,0,2.12V13.66c0,1.77,4.1,2.25,6.53,2.25s6.54-.48,6.54-2.25V2.12C13,.45,8.94,0,6.53,0ZM12,13.66c-.14.39-2.18,1.16-5.45,1.16S1.2,14,1.09,13.66V3.49a14.55,14.55,0,0,0,5.44.87A14.57,14.57,0,0,0,12,3.49ZM12,2.18c-.18.38-2.19,1.09-5.45,1.09S1.32,2.58,1.09,2.19c.23-.39,2.22-1.09,5.44-1.09s5.26.72,5.45,1.06h0Z"/><polygon class="cls-1" points="11.99 2.17 11.98 2.18 11.98 2.15 11.99 2.17"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 661 B |
1
src/sql/media/icons/ellipsis-inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><g fill="#262626"><circle cx="3.5" cy="7.5" r="2.5"/><circle cx="8.5" cy="7.5" r="2.5"/><circle cx="13.5" cy="7.5" r="2.5"/></g><g fill="#C5C5C5"><circle cx="3.5" cy="7.5" r="1.5"/><circle cx="8.5" cy="7.5" r="1.5"/><circle cx="13.5" cy="7.5" r="1.5"/></g></svg>
|
||||
|
After Width: | Height: | Size: 325 B |
1
src/sql/media/icons/ellipsis.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><g fill="#F6F6F6"><circle cx="3.5" cy="7.5" r="2.5"/><circle cx="8.5" cy="7.5" r="2.5"/><circle cx="13.5" cy="7.5" r="2.5"/></g><g fill="#424242"><circle cx="3.5" cy="7.5" r="1.5"/><circle cx="8.5" cy="7.5" r="1.5"/><circle cx="13.5" cy="7.5" r="1.5"/></g></svg>
|
||||
|
After Width: | Height: | Size: 325 B |
1
src/sql/media/icons/file.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#231f20;}.cls-2{fill:#212121;}</style></defs><title>file_16x16</title><polygon class="cls-1" points="13.59 2.21 13.58 2.22 13.58 2.2 13.59 2.21"/><path class="cls-2" d="M8.71,0,14,5.29V16H2V0ZM3,15H13V6H8V1H3ZM9,1.71V5h3.29Z"/></svg>
|
||||
|
After Width: | Height: | Size: 351 B |
1
src/sql/media/icons/file_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>file_inverse_16x16</title><polygon class="cls-1" points="13.59 2.21 13.58 2.22 13.58 2.2 13.59 2.21"/><path class="cls-1" d="M8.71,0,14,5.29V16H2V0ZM3,15H13V6H8V1H3ZM9,1.71V5h3.29Z"/></svg>
|
||||
|
After Width: | Height: | Size: 335 B |
1
src/sql/media/icons/filter.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{font-size:12px;font-family:FullMDL2Assets, Full MDL2 Assets;}</style></defs><title>filter_16x16</title><text class="cls-1" transform="translate(0 12)"> </text><path d="M0,1.53H16V3.24l-6,6v6.27H6V9.22l-6-6ZM15,2.82V2.53H1v.29l6,6v5.69H9V8.8Z"/></svg>
|
||||
|
After Width: | Height: | Size: 363 B |
1
src/sql/media/icons/filter_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{font-size:12px;font-family:FullMDL2Assets, Full MDL2 Assets;}.cls-1,.cls-2{fill:#fff;}</style></defs><title>filter_inverse_16x16</title><text class="cls-1" transform="translate(0.03 12.1)"> </text><path class="cls-2" d="M.05,1.63H16V3.33l-6,6v6.27H6V9.31l-6-6ZM15,2.91V2.62H1v.29l6,6v5.69H9V8.89Z"/></svg>
|
||||
|
After Width: | Height: | Size: 418 B |
31
src/sql/media/icons/loading.svg
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version='1.0' standalone='no' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='10px' height='10px'>
|
||||
<style>
|
||||
circle {
|
||||
animation: ball 0.6s linear infinite;
|
||||
}
|
||||
|
||||
circle:nth-child(2) { animation-delay: 0.075s; }
|
||||
circle:nth-child(3) { animation-delay: 0.15s; }
|
||||
circle:nth-child(4) { animation-delay: 0.225s; }
|
||||
circle:nth-child(5) { animation-delay: 0.3s; }
|
||||
circle:nth-child(6) { animation-delay: 0.375s; }
|
||||
circle:nth-child(7) { animation-delay: 0.45s; }
|
||||
circle:nth-child(8) { animation-delay: 0.525s; }
|
||||
|
||||
@keyframes ball {
|
||||
from { opacity: 1; }
|
||||
to { opacity: 0.3; }
|
||||
}
|
||||
</style>
|
||||
<g>
|
||||
<circle cx='5' cy='1' r='1' style='opacity:0.3;' />
|
||||
<circle cx='7.8284' cy='2.1716' r='1' style='opacity:0.3;' />
|
||||
<circle cx='9' cy='5' r='1' style='opacity:0.3;' />
|
||||
<circle cx='7.8284' cy='7.8284' r='1' style='opacity:0.3;' />
|
||||
<circle cx='5' cy='9' r='1' style='opacity:0.3;' />
|
||||
<circle cx='2.1716' cy='7.8284' r='1' style='opacity:0.3;' />
|
||||
<circle cx='1' cy='5' r='1' style='opacity:0.3;' />
|
||||
<circle cx='2.1716' cy='2.1716' r='1' style='opacity:0.3;' />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
31
src/sql/media/icons/loading_inverse.svg
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version='1.0' standalone='no' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='10px' height='10px'>
|
||||
<style>
|
||||
circle {
|
||||
animation: ball 0.6s linear infinite;
|
||||
}
|
||||
|
||||
circle:nth-child(2) { animation-delay: 0.075s; }
|
||||
circle:nth-child(3) { animation-delay: 0.15s; }
|
||||
circle:nth-child(4) { animation-delay: 0.225s; }
|
||||
circle:nth-child(5) { animation-delay: 0.3s; }
|
||||
circle:nth-child(6) { animation-delay: 0.375s; }
|
||||
circle:nth-child(7) { animation-delay: 0.45s; }
|
||||
circle:nth-child(8) { animation-delay: 0.525s; }
|
||||
|
||||
@keyframes ball {
|
||||
from { opacity: 1; }
|
||||
to { opacity: 0.3; }
|
||||
}
|
||||
</style>
|
||||
<g style="fill:white;">
|
||||
<circle cx='5' cy='1' r='1' style='opacity:0.3;' />
|
||||
<circle cx='7.8284' cy='2.1716' r='1' style='opacity:0.3;' />
|
||||
<circle cx='9' cy='5' r='1' style='opacity:0.3;' />
|
||||
<circle cx='7.8284' cy='7.8284' r='1' style='opacity:0.3;' />
|
||||
<circle cx='5' cy='9' r='1' style='opacity:0.3;' />
|
||||
<circle cx='2.1716' cy='7.8284' r='1' style='opacity:0.3;' />
|
||||
<circle cx='1' cy='5' r='1' style='opacity:0.3;' />
|
||||
<circle cx='2.1716' cy='2.1716' r='1' style='opacity:0.3;' />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
1
src/sql/media/icons/new_database.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#212121;}</style></defs><title>new_database_16x16</title><path class="cls-1" d="M13.68,2.18V8.84h-1V2.24c-.11-.37-2.14-1.13-5.48-1.13s-5.37.76-5.48,1.14V13.69c0,.36,2,1.2,5.48,1.2a15.63,15.63,0,0,0,4.18-.5l.28,1a16.39,16.39,0,0,1-4.46.54c-3.12,0-6.48-.69-6.48-2.2V2.18C.82.55,4.83.11,7.2.11S13.58.55,13.68,2.18Z"/><path class="cls-1" d="M12.75,14.26V12.34H10.82v-.82h1.93V9.59h.82v1.93H15.5v.82H13.57v1.93Z"/></svg>
|
||||
|
After Width: | Height: | Size: 533 B |
1
src/sql/media/icons/new_database_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>new_database_inverse_16x16</title><path class="cls-1" d="M13.68,2.18V8.84h-1V2.24c-.11-.37-2.14-1.13-5.48-1.13s-5.37.76-5.48,1.14V13.69c0,.36,2,1.2,5.48,1.2a15.63,15.63,0,0,0,4.18-.5l.28,1a16.39,16.39,0,0,1-4.46.54c-3.12,0-6.48-.69-6.48-2.2V2.18C.82.55,4.83.11,7.2.11S13.58.55,13.68,2.18Z"/><path class="cls-1" d="M12.75,14.26V12.34H10.82v-.82h1.93V9.59h.82v1.93H15.5v.82H13.57v1.93Z"/></svg>
|
||||
|
After Width: | Height: | Size: 538 B |
1
src/sql/media/icons/newquery.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#212121;}</style></defs><title>newquery_16x16</title><path class="cls-1" d="M1.9,4H.38V2.45H1.9Zm0,9.14H.38V11.59H1.9ZM15.63,4H4.19V2.45H15.63Zm0,9.14H4.19V11.59H15.63Zm0-6.09H7.23V5.5h8.39Zm0,3H10.29V8.54h5.34Z"/></svg>
|
||||
|
After Width: | Height: | Size: 338 B |
1
src/sql/media/icons/newquery_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1,.cls-2{fill:#fff;}.cls-2{font-size:12px;font-family:FullMDL2Assets, Full MDL2 Assets;}</style></defs><title>newquery_inverse_16x16</title><path class="cls-1" d="M1.79,3.85H.26V2.33H1.79Zm0,9.14H.26V11.47H1.79ZM15.51,3.85H4.08V2.33H15.51Zm0,9.14H4.08V11.47H15.51Zm0-6.09H7.12V5.38h8.39Zm0,3H10.18V8.42h5.34Z"/><text class="cls-2" transform="translate(0.01 11.59)"> </text></svg>
|
||||
|
After Width: | Height: | Size: 490 B |
1
src/sql/media/icons/refresh.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#212121;}</style></defs><title>refresh</title><path class="cls-1" d="M12.51,1.59a8.06,8.06,0,0,1,3.06,4A7.83,7.83,0,0,1,16,8.2a7.91,7.91,0,0,1-.29,2.12,8.13,8.13,0,0,1-.8,1.91A8,8,0,0,1,12,15.11a8.1,8.1,0,0,1-1.91.8,8.06,8.06,0,0,1-4.25,0A8.08,8.08,0,0,1,4,15.11a8,8,0,0,1-2.87-2.87,8.07,8.07,0,0,1-.8-1.91,8,8,0,0,1,0-4.25,8.11,8.11,0,0,1,.82-1.94,7.86,7.86,0,0,1,1.3-1.66A8,8,0,0,1,4.14,1.2H2V.2H6v4H5V1.88A7,7,0,0,0,1.28,6.24a7,7,0,0,0,0,3.82,7,7,0,0,0,1.8,3.09A7,7,0,0,0,6.14,15a7,7,0,0,0,3.71,0,7,7,0,0,0,1.67-.71,7,7,0,0,0,3.22-4.18,7,7,0,0,0-.13-4.12,7.07,7.07,0,0,0-2.68-3.52,6.78,6.78,0,0,0-2.07-1l.27-1A7.67,7.67,0,0,1,12.51,1.59Z"/></svg>
|
||||
|
After Width: | Height: | Size: 767 B |
1
src/sql/media/icons/refresh_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>refresh_inverse</title><path class="cls-1" d="M12.51,1.59a8.06,8.06,0,0,1,3.06,4A7.83,7.83,0,0,1,16,8.2a7.91,7.91,0,0,1-.29,2.12,8.13,8.13,0,0,1-.8,1.91A8,8,0,0,1,12,15.11a8.1,8.1,0,0,1-1.91.8,8.06,8.06,0,0,1-4.25,0A8.08,8.08,0,0,1,4,15.11a8,8,0,0,1-2.87-2.87,8.07,8.07,0,0,1-.8-1.91,8,8,0,0,1,0-4.25,8.11,8.11,0,0,1,.82-1.94,7.86,7.86,0,0,1,1.3-1.66A8,8,0,0,1,4.14,1.2H2V.2H6v4H5V1.88A7,7,0,0,0,1.28,6.24a7,7,0,0,0,0,3.82,7,7,0,0,0,1.8,3.09A7,7,0,0,0,6.14,15a7,7,0,0,0,3.71,0,7,7,0,0,0,1.67-.71,7,7,0,0,0,3.22-4.18,7,7,0,0,0-.13-4.12,7.07,7.07,0,0,0-2.68-3.52,6.78,6.78,0,0,0-2.07-1l.27-1A7.67,7.67,0,0,1,12.51,1.59Z"/></svg>
|
||||
|
After Width: | Height: | Size: 772 B |
1
src/sql/media/icons/remove.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><title>close_16x16</title><path d="M8.93,8,16,15.08l-.92.92L8,8.93.92,16,0,15.08,7.07,8,0,.92.92,0,8,7.07,15.08,0,16,.92Z"/></svg>
|
||||
|
After Width: | Height: | Size: 223 B |
1
src/sql/media/icons/remove_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>close_inverse_16x16</title><path class="cls-1" d="M8.93,8,16,15.08l-.92.92L8,8.93.92,16,0,15.08,7.07,8,0,.92.92,0,8,7.07,15.08,0,16,.92Z"/></svg>
|
||||
|
After Width: | Height: | Size: 291 B |
1
src/sql/media/icons/restore.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#212121;}</style></defs><title>restore_16x16</title><path class="cls-1" d="M13.21,2.19V4.66h-1V2.25c-.11-.38-2.15-1.13-5.48-1.13s-5.37.75-5.48,1.14V13.7c0,.36,2,1.2,5.48,1.2s5.43-.84,5.48-1.2V10.93h1V13.7c0,1.51-3.36,2.2-6.48,2.2S.25,15.21.25,13.7V2.19C.35.56,4.35.12,6.73.12S13.11.56,13.21,2.19Z"/><path class="cls-1" d="M15.51,11.34A3.86,3.86,0,0,1,14.28,13a.5.5,0,0,1-.31.1.5.5,0,0,1-.3-.9,2.75,2.75,0,0,0,.9-1.22,2.8,2.8,0,0,0-1.63-3.6,2.74,2.74,0,0,0-2.14.07A2.78,2.78,0,0,0,9.55,8.58l1.61-.44.26,1L8.2,10,7.33,6.77l1-.26L8.71,8a3.8,3.8,0,0,1,4.58-1.59A3.81,3.81,0,0,1,15.51,11.34Z"/></svg>
|
||||
|
After Width: | Height: | Size: 713 B |
1
src/sql/media/icons/restore_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>restore_inverse_16x16</title><path class="cls-1" d="M13.21,2.19V4.66h-1V2.25c-.11-.38-2.15-1.13-5.48-1.13s-5.37.75-5.48,1.14V13.7c0,.36,2,1.2,5.48,1.2s5.43-.84,5.48-1.2V10.93h1V13.7c0,1.51-3.36,2.2-6.48,2.2S.25,15.21.25,13.7V2.19C.35.56,4.35.12,6.73.12S13.11.56,13.21,2.19Z"/><path class="cls-1" d="M15.51,11.34A3.86,3.86,0,0,1,14.28,13a.5.5,0,0,1-.31.1.5.5,0,0,1-.3-.9,2.75,2.75,0,0,0,.9-1.22,2.8,2.8,0,0,0-1.63-3.6,2.74,2.74,0,0,0-2.14.07A2.78,2.78,0,0,0,9.55,8.58l1.61-.44.26,1L8.2,10,7.33,6.77l1-.26L8.71,8a3.8,3.8,0,0,1,4.58-1.59A3.81,3.81,0,0,1,15.51,11.34Z"/></svg>
|
||||
|
After Width: | Height: | Size: 718 B |
1
src/sql/media/icons/run_history_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>run_history_inverse_16x16</title><polygon class="cls-1" points="13.59 2.21 13.58 2.22 13.58 2.2 13.59 2.21"/><path class="cls-1" d="M8,16a7.85,7.85,0,0,1-2.13-.29A8.11,8.11,0,0,1,4,14.91,8,8,0,0,1,1.09,12a8.06,8.06,0,0,1-.8-1.91,8.06,8.06,0,0,1,0-4.25A8.06,8.06,0,0,1,1.09,4,8,8,0,0,1,4,1.09,8.08,8.08,0,0,1,5.88.29a8.06,8.06,0,0,1,4.25,0,8.08,8.08,0,0,1,1.91.8A8,8,0,0,1,14.91,4a8.08,8.08,0,0,1,.8,1.91,8.07,8.07,0,0,1,0,4.25,8.11,8.11,0,0,1-.8,1.91A8,8,0,0,1,12,14.91a8.08,8.08,0,0,1-1.91.8A7.87,7.87,0,0,1,8,16ZM8,1a6.85,6.85,0,0,0-1.86.25A7,7,0,0,0,1.25,6.14a7,7,0,0,0,0,3.71,7,7,0,0,0,4.89,4.89,7,7,0,0,0,3.71,0,7,7,0,0,0,4.89-4.89,7,7,0,0,0,0-3.71A7,7,0,0,0,9.86,1.25,6.85,6.85,0,0,0,8,1ZM8,8V3H7V9h4V8Z"/></svg>
|
||||
|
After Width: | Height: | Size: 864 B |
1
src/sql/media/icons/script_to_clipboard.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><defs><style>.a,.b{fill:#f6f6f6;}.a{opacity:0;}.c{fill:#00539c;}.d{fill:#424242;}.e{fill:#f0eff1;}</style></defs><title>save_option_text_16x</title><rect class="a" width="16" height="16"/><path class="b" d="M12.06,0H6A2,2,0,0,0,4,2V7H0v9H9V14h5a2,2,0,0,0,2-2V3.56Z"/><path class="c" d="M6,8v3H3V8H1v7H8V10ZM5,10H4V8H5Z"/><rect class="d" x="7" y="4" width="3" height="1"/><rect class="d" x="7" y="6" width="6" height="1"/><path class="d" d="M11.64,1H6A1,1,0,0,0,5,2V7H6V2h5V5h3v7H9v1h5a1,1,0,0,0,1-1V4Z"/><polygon class="d" points="7.41 8 8.41 9 13 9 13 8 7.41 8"/><rect class="d" x="9" y="10" width="4" height="1"/><path class="e" d="M6,8v3H3V8H4v2H5V8Z"/><path class="e" d="M11,5V2H6V7h.41l1,1H13V9H8.41L9,9.59V10h4v1H9v1h5V5ZM7,4h3V5H7Zm6,3H7V6h6Z"/></svg>
|
||||
|
After Width: | Height: | Size: 841 B |
1
src/sql/media/icons/search_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>search_inverse_16x16</title><path class="cls-1" d="M10.5-.11a5.45,5.45,0,0,1,2.77.75,5.61,5.61,0,0,1,2,2,5.49,5.49,0,0,1,0,5.55,5.61,5.61,0,0,1-2,2,5.5,5.5,0,0,1-4.64.42A5.62,5.62,0,0,1,7,9.61L.85,15.74a.48.48,0,0,1-.35.15.48.48,0,0,1-.35-.15.49.49,0,0,1,0-.7L6.27,8.9a5.6,5.6,0,0,1-.95-1.64A5.53,5.53,0,0,1,5.2,3.93a5.4,5.4,0,0,1,.55-1.31,5.61,5.61,0,0,1,2-2A5.45,5.45,0,0,1,10.5-.11Zm0,10a4.35,4.35,0,0,0,1.75-.36,4.53,4.53,0,0,0,2.39-2.39A4.35,4.35,0,0,0,15,5.39a4.35,4.35,0,0,0-.36-1.75,4.53,4.53,0,0,0-2.39-2.39,4.49,4.49,0,0,0-3.5,0A4.53,4.53,0,0,0,6.36,3.64,4.35,4.35,0,0,0,6,5.39a4.35,4.35,0,0,0,.36,1.75A4.53,4.53,0,0,0,8.75,9.53,4.35,4.35,0,0,0,10.5,9.89Z"/></svg>
|
||||
|
After Width: | Height: | Size: 820 B |
1
src/sql/media/icons/server_page.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#212121;}.cls-2{fill:#231f20;}</style></defs><title>server_16x16</title><path class="cls-1" d="M0,0V16H10.53V0ZM1,1H9.53v9H1ZM9.53,15H1V11H9.53Z"/><path class="cls-2" d="M4.39,4.23H1.94V1.77H4.39Zm-2-.5H3.89V2.27H2.44Z"/></svg>
|
||||
|
After Width: | Height: | Size: 345 B |
1
src/sql/media/icons/server_page_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>server_inverse_16x16</title><path class="cls-1" d="M2.73,0V16H13.26V0Zm1,1h8.53v9H3.73ZM12.26,15H3.73V11h8.53Z"/><path class="cls-1" d="M7.21,4.23H4.75V1.77H7.21Zm-2-.5H6.71V2.27H5.25Z"/></svg>
|
||||
|
After Width: | Height: | Size: 339 B |
1
src/sql/media/icons/sourcecontrol_inverse.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#fff;}</style></defs><title>sourcecontrol_inverse_16x16</title><path class="cls-1" d="M14.06,2.4a2.44,2.44,0,0,1-.15.86,2.5,2.5,0,0,1-.42.73,2.58,2.58,0,0,1-.64.55,2.44,2.44,0,0,1-.81.31,4.38,4.38,0,0,1-.41,1.48,4.51,4.51,0,0,1-.86,1.23,4.57,4.57,0,0,1-1.22.88,4.48,4.48,0,0,1-1.48.44v2.07a2.54,2.54,0,0,1,1.44.87,2.49,2.49,0,0,1,.41.73,2.47,2.47,0,0,1,.15.85,2.41,2.41,0,0,1-.2,1,2.56,2.56,0,0,1-.54.8,2.52,2.52,0,0,1-.79.54,2.43,2.43,0,0,1-1,.2,2.45,2.45,0,0,1-1-.2,2.49,2.49,0,0,1-1.33-1.33,2.52,2.52,0,0,1,0-1.82,2.49,2.49,0,0,1,.41-.73,2.54,2.54,0,0,1,1.44-.87V8.88a4.48,4.48,0,0,1-1.48-.44,4.57,4.57,0,0,1-1.22-.88A4.51,4.51,0,0,1,3.5,6.34a4.38,4.38,0,0,1-.41-1.48,2.44,2.44,0,0,1-.81-.31A2.58,2.58,0,0,1,1.63,4a2.5,2.5,0,0,1-.42-.73,2.49,2.49,0,0,1,0-1.82A2.52,2.52,0,0,1,1.79.64,2.56,2.56,0,0,1,2.59.1a2.41,2.41,0,0,1,1-.2,2.38,2.38,0,0,1,1,.2A2.56,2.56,0,0,1,5.86,1.43a2.38,2.38,0,0,1,.2,1A2.49,2.49,0,0,1,5.51,4a2.56,2.56,0,0,1-.62.55,2.45,2.45,0,0,1-.79.32,3.28,3.28,0,0,0,.39,1.21,3.62,3.62,0,0,0,.77,1,3.49,3.49,0,0,0,1.06.64,3.51,3.51,0,0,0,2.5,0A3.49,3.49,0,0,0,9.87,7a3.55,3.55,0,0,0,.77-1A3.45,3.45,0,0,0,11,4.85a2.45,2.45,0,0,1-.79-.32A2.56,2.56,0,0,1,9.61,4,2.49,2.49,0,0,1,9.06,2.4a2.43,2.43,0,0,1,.2-1A2.52,2.52,0,0,1,9.79.64a2.56,2.56,0,0,1,.8-.54,2.41,2.41,0,0,1,1-.2,2.38,2.38,0,0,1,1,.2,2.56,2.56,0,0,1,1.33,1.33A2.38,2.38,0,0,1,14.06,2.4Zm-12,0A1.47,1.47,0,0,0,2.18,3a1.49,1.49,0,0,0,.8.8,1.52,1.52,0,0,0,1.17,0,1.49,1.49,0,0,0,.8-.8,1.52,1.52,0,0,0,0-1.17,1.49,1.49,0,0,0-.8-.8A1.52,1.52,0,0,0,3,1a1.49,1.49,0,0,0-.8.8A1.47,1.47,0,0,0,2.06,2.4Zm7,11a1.47,1.47,0,0,0-.12-.59,1.49,1.49,0,0,0-.8-.8A1.52,1.52,0,0,0,7,12a1.49,1.49,0,0,0-.8.8,1.52,1.52,0,0,0,0,1.17,1.49,1.49,0,0,0,.8.8,1.52,1.52,0,0,0,1.17,0,1.49,1.49,0,0,0,.8-.8A1.47,1.47,0,0,0,9.06,13.4Zm2.5-9.5a1.47,1.47,0,0,0,.59-.12,1.49,1.49,0,0,0,.8-.8,1.52,1.52,0,0,0,0-1.17,1.49,1.49,0,0,0-.8-.8A1.52,1.52,0,0,0,11,1a1.49,1.49,0,0,0-.8.8,1.52,1.52,0,0,0,0,1.17,1.49,1.49,0,0,0,.8.8A1.47,1.47,0,0,0,11.56,3.9Z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
1
src/sql/media/icons/status_cancelled.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#3062d6;}.cls-2{fill:#fff;}</style></defs><title>cancelledstate_16x16</title><circle class="cls-1" cx="8.07" cy="8.07" r="7.93"/><polygon class="cls-2" points="8.82 8.07 11.53 10.78 10.83 11.48 8.12 8.78 5.41 11.48 4.7 10.78 7.42 8.07 4.65 5.31 5.36 4.61 8.12 7.37 10.83 4.67 11.53 5.36 8.82 8.07"/></svg>
|
||||
|
After Width: | Height: | Size: 423 B |
1
src/sql/media/icons/status_error.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#d02e00;}.cls-2{fill:#fff;}</style></defs><title>error_16x16</title><circle class="cls-1" cx="8.07" cy="8.07" r="7.93"/><polygon class="cls-2" points="8.82 8.07 11.53 10.78 10.83 11.48 8.12 8.78 5.41 11.48 4.7 10.78 7.42 8.07 4.65 5.31 5.36 4.61 8.12 7.37 10.83 4.67 11.53 5.36 8.82 8.07"/></svg>
|
||||
|
After Width: | Height: | Size: 414 B |
1
src/sql/media/icons/status_info.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><style type="text/css">.icon-canvas-transparent{opacity:0;fill:#F6F6F6;} .icon-vs-out{fill:#F6F6F6;} .icon-vs-blue{fill:#1BA1E2;} .icon-white{fill:#FFFFFF;}</style><path class="icon-canvas-transparent" d="M16 16h-16v-16h16v16z" id="canvas"/><path class="icon-vs-out" d="M0 8c0-4.418 3.582-8 8-8s8 3.582 8 8-3.582 8-8 8-8-3.582-8-8z" id="outline"/><path class="icon-vs-blue" d="M8 1c-3.865 0-7 3.135-7 7s3.135 7 7 7 7-3.135 7-7-3.135-7-7-7zm1 12h-2v-7h2v7zm0-8h-2v-2h2v2z" id="iconBg"/><path class="icon-white" d="M7 6h2v7h-2v-7zm0-1h2v-2h-2v2z" id="iconFg"/></svg>
|
||||
|
After Width: | Height: | Size: 627 B |
1
src/sql/media/icons/status_success.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#3bb44a;}</style></defs><title>success_16x16</title><path class="cls-1" d="M16,3.16,5.48,13.69,0,8.2l.89-.89,4.6,4.59,9.63-9.62Z"/></svg>
|
||||
|
After Width: | Height: | Size: 255 B |
1
src/sql/media/icons/status_warning.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><defs><style>.cls-1{fill:#f9e385;}.cls-2{fill:#212121;}</style></defs><title>warning_16x16</title><polygon class="cls-1" points="8.05 0.15 16 16 -0.12 16 8.05 0.15"/><rect class="cls-2" x="7.31" y="7.34" width="1.59" height="3.97"/><rect class="cls-2" x="7.31" y="12.1" width="1.59" height="1.59"/></svg>
|
||||
|
After Width: | Height: | Size: 397 B |