16 lines
903 B
XML
16 lines
903 B
XML
<Styles xmlns="https://github.com/avaloniaui" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Styles.Resources>
|
|
<Color x:Key="SeriesEntryGridBackgroundColor">#FFE6FFE6</Color>
|
|
|
|
<SolidColorBrush x:Key="SeriesEntryGridBackgroundBrush" Color="{StaticResource SeriesEntryGridBackgroundColor}" />
|
|
<SolidColorBrush x:Key="ProcessQueueBookFailedBrush" Color="LightCoral" />
|
|
<SolidColorBrush x:Key="ProcessQueueBookCompletedBrush" Color="PaleGreen" />
|
|
<SolidColorBrush x:Key="ProcessQueueBookCancelledBrush" Color="Khaki" />
|
|
<SolidColorBrush x:Key="ProcessQueueBookDefaultBrush" Color="{StaticResource SystemAltHighColor}" />
|
|
<SolidColorBrush x:Key="ProcessQueueBookBorderBrush" Color="Gray" />
|
|
</Styles.Resources>
|
|
<Style Selector="TextBox[IsReadOnly=true]">
|
|
<Setter Property="Background" Value="LightGray" />
|
|
<Setter Property="CaretBrush" Value="#00000000" />
|
|
</Style>
|
|
</Styles> |