8

I've implemented the jQuery-ui tabs widget and it works great. However, it does some style things I don't like. Specifically the .ui-corner-all is rounded, and I don't want that.

What is the "correct" way to override this. Should I use a theme?

Does someone have a good beginner tutorial on how to use/create ui themes?

4

2 回答 2

10

尝试使用重要的

.ui-corner-all{
border: 0px !important;
}

在自定义样式表或文档头中。

于 2013-09-29T18:46:14.530 回答
2

我建议不要尝试手动覆盖 JQuery UI 的样式,而是选择使用JQuery UI 的 ThemeRoller页面。

使用 ThemeRoller 修改主题将确保对未来升级的最大兼容性,而不是为了在下次尝试升级到更新版本的 JQuery UI 时更改或冲突而覆盖某些样式。

于 2014-05-02T15:06:00.060 回答