如何对 jquery ui 的不同元素设置不同的样式?
为了以特定的方式设置 jqueryui 选项卡的样式,我的团队成员修改了 ui-state-default 类,如下所示
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{ border: 3px solid transparent;
background: #F5AD4C 0px 0px repeat-x url(pix/redesign/orangebuttonstrip.jpg);
font-weight: bold; color: White; }
现在的问题是我正在使用 jqueryui 自动完成组合框,它创建具有相同类的按钮元素
因此我有一个背景图像出现使它看起来丑陋而巨大。
如何为不同的元素设置不同的样式?我尝试将 button.ui-state-default 作为不同的样式,由 jqueryui 覆盖它。
To style the jqueryui tabs in a particular way, my team members modified the class ui-state-default as follows
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{ border: 3px solid transparent;
background: #F5AD4C 0px 0px repeat-x url(pix/redesign/orangebuttonstrip.jpg);
font-weight: bold; color: White; }
The problem now is that I am using jqueryui autocomplete combobox which creates a button element with the same class
Thus I have a the background image appearing which makes it look ugly and huge.
How do I set different styles for different elements? I tried puttin button.ui-state-default as a different style by jqueryui overrides that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改选项卡当前的 CSS 规则,如下所示:
注意:
.ui-tabs.ui-widget-content
不是错误,而是故意的。这意味着如果这两个类都存在,则按以下规则设置样式。Change your current CSS rules for tabs as follows:
Note:
.ui-tabs.ui-widget-content
is not an error, it's like that on purpose. It means if both of those classes are present, then style by the rule that follows.