mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-30 22:49:53 +08:00
19 lines
660 B
XML
19 lines
660 B
XML
<!--
|
|
Copyright (C) 2026 SharpEmu Emulator Project
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
Console list typography and compact item spacing.
|
|
-->
|
|
|
|
<Styles xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Style Selector="ListBox.console">
|
|
<Setter Property="Background" Value="#0B0E14" />
|
|
<Setter Property="FontFamily" Value="Cascadia Mono, Consolas, Courier New, monospace" />
|
|
<Setter Property="FontSize" Value="12" />
|
|
</Style>
|
|
<Style Selector="ListBox.console ListBoxItem">
|
|
<Setter Property="Padding" Value="10,1" />
|
|
<Setter Property="MinHeight" Value="0" />
|
|
</Style>
|
|
</Styles>
|