Skip to content

Commit 27c8ca0

Browse files
Remove hover and pressed background colors for button
Removed hover and pressed background color definitions for the scroll to bottom button.
1 parent b558c0b commit 27c8ca0

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

MAUI/AIAssistView/styles.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,14 +1199,6 @@ To style the scroll to bottom button view based on its appearance, set values to
11991199
<td> SfAIAssistViewScrollToBottomButtonIconColor </td>
12001200
<td> Color of the scroll to bottom button. </td>
12011201
</tr>
1202-
<tr>
1203-
<td> SfAIAssistViewHoveredScrollToBottomButtonBackground </td>
1204-
<td> Background color of scroll to bottom button in hover state. </td>
1205-
</tr>
1206-
<tr>
1207-
<td> SfAIAssistViewPressedScrollToBottomButtonBackground </td>
1208-
<td> Background color when the scroll to bottom button is pressed. </td>
1209-
</tr>
12101202
</table>
12111203

12121204
{% tabs %}
@@ -1219,8 +1211,6 @@ To style the scroll to bottom button view based on its appearance, set values to
12191211
<x:String x:Key="SfAIAssistViewTheme">CustomTheme</x:String>
12201212
<Color x:Key="SfAIAssistViewScrollToBottomButtonBackground">Orange</Color>
12211213
<Color x:Key="SfAIAssistViewScrollToBottomButtonIconColor">White</Color>
1222-
<Color x:Key="SfAIAssistViewHoveredScrollToBottomButtonBackground">DarkOrange</Color>
1223-
<Color x:Key="SfAIAssistViewPressedScrollToBottomButtonBackground">Red</Color>
12241214
</ResourceDictionary>
12251215
</core:SyncfusionThemeDictionary.MergedDictionaries>
12261216
</core:SyncfusionThemeDictionary>
@@ -1235,9 +1225,7 @@ public MainPage()
12351225
ResourceDictionary dictionary = new ResourceDictionary();
12361226
dictionary.Add("SfAIAssistViewTheme", "CustomTheme");
12371227
dictionary.Add("SfAIAssistViewScrollToBottomButtonBackground", Colors.Orange);
1238-
dictionary.Add("SfAIAssistViewScrollToBottomButtonIconColor", Colors.White);
1239-
dictionary.Add("SfAIAssistViewHoveredScrollToBottomButtonBackground", Colors.DarkOrange);
1240-
dictionary.Add("SfAIAssistViewPressedScrollToBottomButtonBackground", Colors.Red);
1228+
dictionary.Add("SfAIAssistViewScrollToBottomButtonIconColor", Colors.White);\
12411229
this.Resources.Add(dictionary);
12421230
}
12431231

@@ -1304,4 +1292,4 @@ public MainPage()
13041292
}
13051293

13061294
{% endhighlight %}
1307-
{% endtabs %}
1295+
{% endtabs %}

0 commit comments

Comments
 (0)