-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SLVS-1467 Fix icons not visible on dark theme (#5706)
- Loading branch information
1 parent
05b8956
commit 2918f18
Showing
5 changed files
with
58 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | ||
|
||
<DrawingImage x:Key="CheckDrawingImage"> | ||
<DrawingImage.Drawing> | ||
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z"> | ||
<DrawingGroup Opacity="1"> | ||
<GeometryDrawing Brush="#FF1F801F" Geometry="F1 M16,16z M0,0z M6.568,14.5L5.826,14.5 2.326,10.487 3.079,9.829 6.216,13.413 14.271,5.133 15,5.816z" /> | ||
</DrawingGroup> | ||
</DrawingGroup> | ||
</DrawingImage.Drawing> | ||
</DrawingImage> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | ||
|
||
<DrawingImage x:Key="TrashCanDrawingImage"> | ||
<DrawingImage.Drawing> | ||
<DrawingGroup ClipGeometry="M0,0 V16 H16 V0 H0 Z"> | ||
<DrawingGroup Opacity="1"> | ||
<GeometryDrawing Geometry="F1 M16,16z M0,0z M12.5,2.5L12.5,15.5 2.5,15.5 2.5,2.5z"> | ||
<GeometryDrawing.Brush> | ||
<SolidColorBrush Color="Transparent" Opacity="0.1" /> | ||
</GeometryDrawing.Brush> | ||
</GeometryDrawing> | ||
<GeometryDrawing Brush="#cc0000" Geometry="F1 M16,16z M0,0z M14,2L10,2 10,1A1,1,0,0,0,9,0L6,0A1,1,0,0,0,5,1L5,2 1,2 1,3 2,3 2,15.5 2.5,16 12.5,16 13,15.5 13,3 14,3z M6,1L9,1 9,2 6,2z M12,15L3,15 3,3 12,3z M5,13L5,5 6,5 6,13z M10,13L9,13 9,5 10,5z M8,13L7,13 7,5 8,5z" /> | ||
</DrawingGroup> | ||
</DrawingGroup> | ||
</DrawingImage.Drawing> | ||
</DrawingImage> | ||
|
||
</ResourceDictionary> |