jquery选项卡无法摆脱格式化中的“+”图标

时间:2012-11-21 23:12:43

标签: jquery tabs icons

我正在使用jquery选项卡和自定义jquery ui,但由于某些原因,每个选项卡顶部都会出现“+”符号,是否有人知道为什么以及如何摆脱它?

enter image description here

我没有在CSS中添加任何图标,我只更改了背景等等。 这是选项卡的css部分:

    .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; text-align:center; width: 110px; border-bottom: 0;
                           padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-active a{color:#A7A88A}
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; background:green}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
}


.ui-tabs-nav li img {

display: block;
margin-left: auto;
margin-right: auto

}


#mytabs{
    padding: 0px;
    background: none;
    border-width: 0px;
}
#mytabs .ui-tabs-nav {
    padding-left: 0px;
    background: transparent;
    border-width: 0px 0px 1px 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
#mytabs .ui-tabs-panel {
    background: url(images/ui-bg_highlight-hard_100_f5f3e5_1x100.png) repeat-x scroll 50% top #f5f3e5;
    border-width: 0px 1px 1px 1px;
}

1 个答案:

答案 0 :(得分:1)

来自:

.art-postcontent ul > li:before
{
   content:url('images/postbullets.png');
   ...
}
第3950行

.art-post ul > li::before {
    content: url('images/postbullets.png');
    ...
}

在第3938行。您可以删除css中的这两个内容属性,+符号应该会消失。