更改 Tapestry 5 网格中排序按钮的位置

发布于 2024-11-29 14:43:52 字数 96 浏览 1 评论 0原文

如何更改 Tapestry 5 网格标题中排序按钮的位置?

我有不同长度的列名称,并且在空格上换行,因此附加到列名称末尾的按钮总是以不同的高度结束。这非常丑陋:(

How do I change the position of the sort button in header of the grid in Tapestry 5?

I have column names of different lengths and I break lines on spaces, so the button, which is appended to the end of the column names, always ends up in different height. And that is very ugly :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谎言 2024-12-06 14:43:52

默认位置在default.css中定义:

img.t-sort-icon {
    margin-left: 4px;
}

您可以通过提供更具体的CSS规则轻松更改它,例如

th img.t-sort-icon {
   //your style here
}

The default position is defined in default.css:

img.t-sort-icon {
    margin-left: 4px;
}

You can easily change it by providing a more specific CSS rule, e.g.

th img.t-sort-icon {
   //your style here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文