- tweak: change color think

This commit is contained in:
2025-02-20 22:13:31 +03:00
parent 718fed4a76
commit 3f93964fc2
3 changed files with 19 additions and 5 deletions

View File

@@ -51,9 +51,9 @@
Padding="0,0,-4,0"> Padding="0,0,-4,0">
<Border.Background> <Border.Background>
<LinearGradientBrush EndPoint="100%,50%" StartPoint="0%,50%"> <LinearGradientBrush EndPoint="100%,50%" StartPoint="0%,50%">
<GradientStop Color="#1f1f1f" Offset="0.0" /> <GradientStop Color="#221f1f" Offset="0.0" />
<GradientStop Color="#222222" Offset="0.2" /> <GradientStop Color="#282222" Offset="0.2" />
<GradientStop Color="#222222" Offset="1.0" /> <GradientStop Color="#232222" Offset="1.0" />
</LinearGradientBrush> </LinearGradientBrush>
</Border.Background> </Border.Background>
<Grid ColumnDefinitions="*" RowDefinitions="*,40"> <Grid ColumnDefinitions="*" RowDefinitions="*,40">

View File

@@ -17,7 +17,14 @@
ColumnDefinitions="*,2*,40,40" ColumnDefinitions="*,2*,40,40"
Margin="8" Margin="8"
RowDefinitions="40,*"> RowDefinitions="40,*">
<Border CornerRadius="10,10,0,0" Grid.ColumnSpan="4" /> <Border CornerRadius="10,10,0,0" Grid.ColumnSpan="4" Background="{StaticResource DefaultGrad}" BorderThickness="0,0,0,2">
<Border.BorderBrush>
<LinearGradientBrush EndPoint="100%,50%" StartPoint="0%,50%">
<GradientStop Color="#222222" Offset="0.0" />
<GradientStop Color="#442222" Offset="1.0" />
</LinearGradientBrush>
</Border.BorderBrush>
</Border>
<TextBox <TextBox
Grid.Column="0" Grid.Column="0"
Grid.Row="0" Grid.Row="0"
@@ -60,6 +67,7 @@
CornerRadius="0" CornerRadius="0"
Height="30" Height="30"
HorizontalAlignment="Stretch"> HorizontalAlignment="Stretch">
<StackPanel Orientation="Horizontal" Spacing="15"> <StackPanel Orientation="Horizontal" Spacing="15">
<Border <Border
Background="#00000000" Background="#00000000"
@@ -69,6 +77,12 @@
Height="15" Height="15"
Margin="10,0,10,0" Margin="10,0,10,0"
Path="{Binding IconPath}" /> Path="{Binding IconPath}" />
<Border.BorderBrush>
<LinearGradientBrush EndPoint="100%,50%" StartPoint="0%,50%">
<GradientStop Color="#442222" Offset="0.0" />
<GradientStop Color="#222222" Offset="1.0" />
</LinearGradientBrush>
</Border.BorderBrush>
</Border> </Border>
<Label> <Label>
<TextBlock Text="{Binding Name}" VerticalAlignment="Center" /> <TextBlock Text="{Binding Name}" VerticalAlignment="Center" />

View File

@@ -36,7 +36,7 @@
</ScrollViewer> </ScrollViewer>
<Border <Border
Background="{StaticResource DefaultBackground}" Background="{StaticResource DefaultGrad}"
BoxShadow="0 2 25 0 #121212" BoxShadow="0 2 25 0 #121212"
CornerRadius="0" CornerRadius="0"
Grid.Row="1" /> Grid.Row="1" />