私たちのアプリケーションには、すべてのページに共通のマスター.cssがあり、このファイルの内容を変更することは許可されていません。
そこに次のようなエントリがあります。
ul li{display:block;padding:0 0 0.5em 15px;margin:0 0 0 0;background:url(../images/bullet.gif) top left no-repeat;}
私はjsp-sの1つに予測検索を実装しており、この目的のために次のような特定のcssファイルがあります。
.ac_results {
padding: 0px;
border: 1px solid black;
background-color: white;
overflow: hidden;
z-index: 99999;
}
.ac_results ul {
width: 100%;
list-style-position: none;
list-style: none;
padding: 0;
margin: 0;
list-style: disc inside;
}
.ac_results li {
margin: 0px;
padding: 2px 5px;
cursor: default;
display: block;
/*
if width will be 100% horizontal scrollbar will apear
when scroll mode will be used
*/
/*width: 100%;*/
font: menu;
font-size: 12px;
/*
it is very important, if line-height not setted or setted
in relative units scroll will be broken in firefox
*/
line-height: 16px;
overflow: hidden;
}
.ac_loading {
background: white url('indicator.gif') right center no-repeat;
}
.ac_odd {
background-color: #eee;
}
.ac_over {
background-color: #0A246A;
color: white;
}
私の問題は、これbullet.gif
を現在の予測検索リストから削除できないことです。背景を追加した場合:なし既存の背景色をすべて失います。bullet.gif
これを停止してリストに表示するにはどうすればよいですか。
注意:私も試してみましbackground-image:none;
たが、うまくいきませんでした。bullet.gif
まだ検索リストに表示されています:(
よろしく、M