Skip to content

Commit 4ef59c5

Browse files
authored
Adjust MacOS TextBox Padding (#87)
#85 affected the TextBox padding and an earlier mistake within the local Demo styling lead to misleading results in the app. Both should be fixed with this
1 parent 40c1767 commit 4ef59c5

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

samples/SampleApp/DemoPages/TextBoxDemo.axaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
x:Class="SampleApp.DemoPages.TextBoxDemo">
77

88
<UserControl.Styles>
9-
<Style Selector="TextBlock">
9+
<Style Selector="TextBlock.Label">
1010
<Setter Property="Margin" Value="3 0 0 0" />
1111
</Style>
1212
</UserControl.Styles>
@@ -18,11 +18,11 @@
1818
CornerRadius="{DynamicResource LayoutCornerRadius}"
1919
Background="{DynamicResource LayoutBackgroundLowBrush}">
2020
<StackPanel Margin="20" Width="300" Spacing="10" HorizontalAlignment="Left">
21-
<TextBlock>Name:</TextBlock>
21+
<TextBlock Classes="Label">Name:</TextBlock>
2222
<TextBox Watermark="Enter your name" />
23-
<TextBlock>Password:</TextBlock>
23+
<TextBlock Classes="Label">Password:</TextBlock>
2424
<TextBox PasswordChar="*" Watermark="Enter your password" />
25-
<TextBlock>Notes:</TextBlock>
25+
<TextBlock Classes="Label">Notes:</TextBlock>
2626
<TextBox Height="100" AcceptsReturn="True" TextWrapping="Wrap" />
2727
<TextBox InnerLeftContent="http://" />
2828
<TextBox InnerRightContent=".com" />
@@ -33,7 +33,7 @@
3333
<TextBox Watermark="Disabled" IsEnabled="False" />
3434
<TextBox PasswordChar="*" Classes="revealPasswordButton">Reveal Password</TextBox>
3535
<TextBox PasswordChar="*" Classes="revealPasswordButton" RevealPassword="True">Password Revealed</TextBox>
36-
<TextBlock>Custom Height:</TextBlock>
36+
<TextBlock Classes="Label">Custom Height:</TextBlock>
3737
<StackPanel Orientation="Horizontal">
3838
<TextBox Watermark="Type here" Height="30" Width="250" VerticalContentAlignment="Center" />
3939
<Button Content="..." Height="30" Width="30" />

src/MacOS.Avalonia.Theme/Controls/TextBox.axaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Border Background="{DynamicResource LayoutBackgroundLowBrush}">
1212
<StackPanel Margin="20" Width="300" Spacing="10" HorizontalAlignment="Left">
1313
<TextBlock>Name:</TextBlock>
14-
<TextBox Watermark="Enter your name">MyServer</TextBox>
14+
<TextBox Watermark="Enter your name">Anna</TextBox>
1515
<TextBlock>Password:</TextBlock>
1616
<TextBox PasswordChar="*" Watermark="Enter your password" />
1717
<TextBlock>Notes:</TextBlock>
@@ -120,13 +120,15 @@
120120
<Setter Property="Template">
121121
<ControlTemplate>
122122
<DataValidationErrors>
123-
<Panel>
123+
<Border Padding="3">
124+
<Panel>
124125
<Border Name="PART_BorderElement"
125126
Height="{TemplateBinding Height}"
126127
BorderThickness="1"
127128
BorderBrush="Transparent"
128129
BoxShadow="{DynamicResource TextBoxBorderShadows}"
129-
Background="{TemplateBinding Background}">
130+
Background="{TemplateBinding Background}"
131+
Padding="2 0 2 0 ">
130132
<Grid ColumnDefinitions="Auto,*,Auto">
131133
<ContentPresenter Name="PrefixContent"
132134
Grid.Column="0"
@@ -207,9 +209,11 @@
207209
</Border>
208210
<Border Name="FocusBorderElement"
209211
Height="{TemplateBinding Height}"
212+
Margin="-3"
210213
BorderThickness="3"
211214
CornerRadius="3" />
212-
</Panel>
215+
</Panel>
216+
</Border>
213217
</DataValidationErrors>
214218
</ControlTemplate>
215219
</Setter>

0 commit comments

Comments
 (0)