Update diff addition/deletion icons
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 7V8H8V14H7V8H1V7H7V1H8V7H14Z" fill="#C5C5C5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 163 B |
@@ -1 +0,0 @@
|
||||
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><title>Layer 1</title><rect height="11" width="3" y="3" x="7" fill="#C5C5C5"/><rect height="3" width="11" y="7" x="3" fill="#C5C5C5"/></svg>
|
||||
|
Before Width: | Height: | Size: 203 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14 7V8H8V14H7V8H1V7H7V1H8V7H14Z" fill="#424242"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 163 B |
@@ -1 +0,0 @@
|
||||
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><title>Layer 1</title><rect height="11" width="3" y="3" x="7" fill="#424242"/><rect height="3" width="11" y="7" x="3" fill="#424242"/></svg>
|
||||
|
Before Width: | Height: | Size: 203 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 8H1V7H15V8Z" fill="#C5C5C5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 146 B |
@@ -1 +0,0 @@
|
||||
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><title>Layer 1</title><rect height="3" width="11" y="7" x="3" fill="#C5C5C5"/></svg>
|
||||
|
Before Width: | Height: | Size: 147 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 8H1V7H15V8Z" fill="#424242"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 146 B |
@@ -1 +0,0 @@
|
||||
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><title>Layer 1</title><rect height="3" width="11" y="7" x="3" fill="#424242"/></svg>
|
||||
|
Before Width: | Height: | Size: 147 B |
@@ -52,24 +52,24 @@
|
||||
}
|
||||
.monaco-editor .insert-sign,
|
||||
.monaco-diff-editor .insert-sign {
|
||||
background-image: url('addition.svg');
|
||||
background-image: url('addition-light.svg');
|
||||
}
|
||||
.monaco-editor .delete-sign,
|
||||
.monaco-diff-editor .delete-sign {
|
||||
background-image: url('deletion.svg');
|
||||
background-image: url('deletion-light.svg');
|
||||
}
|
||||
|
||||
.monaco-editor.vs-dark .insert-sign,
|
||||
.monaco-diff-editor.vs-dark .insert-sign,
|
||||
.monaco-editor.hc-black .insert-sign,
|
||||
.monaco-diff-editor.hc-black .insert-sign {
|
||||
background-image: url('addition-inverse.svg');
|
||||
background-image: url('addition-dark.svg');
|
||||
}
|
||||
.monaco-editor.vs-dark .delete-sign,
|
||||
.monaco-diff-editor.vs-dark .delete-sign,
|
||||
.monaco-editor.hc-black .delete-sign,
|
||||
.monaco-diff-editor.hc-black .delete-sign {
|
||||
background-image: url('deletion-inverse.svg');
|
||||
background-image: url('deletion-dark.svg');
|
||||
}
|
||||
|
||||
.monaco-editor .inline-deleted-margin-view-zone {
|
||||
|
||||