jQuery UI自动完成小部件下拉列表样式不起作用

时间:2016-10-03 20:52:04

标签: css asp.net-mvc jquery-ui twitter-bootstrap-3

当我将鼠标悬停在自动完成下拉列表中的项目上时,背景颜色不会改变,它仍然是白色的。 我在site.css中使用这种样式:

.ui-autocomplete {
    position: absolute;
    z-index: 1000;
    cursor: default;
    padding: 0;
    margin-top: 2px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #ccc;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
       -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.ui-autocomplete > li {
  padding: 3px 20px;
}
.ui-autocomplete > li.ui-state-focus {
  background-color: #DDD;
}
.ui-helper-hidden-accessible {
  display: none;
}

BundleConfig代码:

bundles.Add(new StyleBundle("~/Content/css").Include(
                      "~/Content/bootstrap.css",
                       "~/Content/Site.css"
                      ));

enter image description here

enter image description here

enter image description here

注意:我在Bootstrap输入文本

上使用此小部件

0 个答案:

没有答案