開発中の drupal Web サイトに検索バー (http://loopj.com/) を組み込んでみました。次の方法で要素の幅を 400px として定義します。
ul.token-input-list {
overflow: hidden;
height: auto !important;
height: 1%;
width: 400px;
border: 1px solid #8496ba;
cursor: text;
font-size: 12px;
font-family: Verdana;
min-height: 1px;
z-index: 999;
margin: 0;
padding: 0;
background-color: #fff;
list-style-type: none;
clear: left;
}
これにより、削除できないポインターへのオフセットが発生します。だから、継承された属性を非アクティブ化できるようにすればうまくいくと思いますが、それを行う方法はありますか?
ありがとう!