admin管理员组文章数量:1026620
I have an issue with the following MudTooltip:
<MudTooltip Text="@Loc["HistoryTooltip"]" Delay="1000" Placement="Placement.Top">
<MudIconButton Size="@Size.Small" Icon="@Icons.Material.Filled.History" Color="Color.Default" />
</MudTooltip>
The tooltip shows, but if I scroll the page it shows only at the original position, not at the new position after scrolling... This is in InteractiveServer mode.
Am I doing something wrong, or missing something? I cannot be the only one who ever encountered this issue...
I have an issue with the following MudTooltip:
<MudTooltip Text="@Loc["HistoryTooltip"]" Delay="1000" Placement="Placement.Top">
<MudIconButton Size="@Size.Small" Icon="@Icons.Material.Filled.History" Color="Color.Default" />
</MudTooltip>
The tooltip shows, but if I scroll the page it shows only at the original position, not at the new position after scrolling... This is in InteractiveServer mode.
Am I doing something wrong, or missing something? I cannot be the only one who ever encountered this issue...
Share Improve this question asked Nov 16, 2024 at 17:21 Drunken Code MonkeyDrunken Code Monkey 1,8361 gold badge16 silver badges20 bronze badges1 Answer
Reset to default 1I managed to get it working by applying the following CSS:
.mud-popover-cascading-value {
position: fixed;
}
The tooltip now follows the scrolling or page resize properly.
I have an issue with the following MudTooltip:
<MudTooltip Text="@Loc["HistoryTooltip"]" Delay="1000" Placement="Placement.Top">
<MudIconButton Size="@Size.Small" Icon="@Icons.Material.Filled.History" Color="Color.Default" />
</MudTooltip>
The tooltip shows, but if I scroll the page it shows only at the original position, not at the new position after scrolling... This is in InteractiveServer mode.
Am I doing something wrong, or missing something? I cannot be the only one who ever encountered this issue...
I have an issue with the following MudTooltip:
<MudTooltip Text="@Loc["HistoryTooltip"]" Delay="1000" Placement="Placement.Top">
<MudIconButton Size="@Size.Small" Icon="@Icons.Material.Filled.History" Color="Color.Default" />
</MudTooltip>
The tooltip shows, but if I scroll the page it shows only at the original position, not at the new position after scrolling... This is in InteractiveServer mode.
Am I doing something wrong, or missing something? I cannot be the only one who ever encountered this issue...
Share Improve this question asked Nov 16, 2024 at 17:21 Drunken Code MonkeyDrunken Code Monkey 1,8361 gold badge16 silver badges20 bronze badges1 Answer
Reset to default 1I managed to get it working by applying the following CSS:
.mud-popover-cascading-value {
position: fixed;
}
The tooltip now follows the scrolling or page resize properly.
本文标签: Blazor 8 MudBlazor Tooltip Y position incorrect after scrolling the pageStack Overflow
版权声明:本文标题:Blazor 8 MudBlazor Tooltip Y position incorrect after scrolling the page - Stack Overflow 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/questions/1745649215a2161212.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论