Extjs アプリケーションでリンクを使用していますが、ホバー状態の問題に直面しています。
リンクを右クリックすると、外側をクリックするまでホバー状態が表示されます。外側をクリックすると、正常になります。
そのリンクからマウスを離すとすぐに通常の状態を表示したい。
これが私のCSSです。
.linkbold{
color:#0080cc;
font-family:Tahoma;
font-size:11px;
text-decoration:none;
font-weight:bold !important;
}
a.linkbold:link, a.linkbold:visited{
color:#0080cc;
font-family:Tahoma;
font-size:11px;
text-decoration:none;
background-color: #red;
font-weight:bold !important;
display:block;
}
a.linkbold:hover{
color:#000000;
font-family:Tahoma;
font-size:11px;
text-decoration:none;
font-weight:bold !important;
}
a.linkbold:active{
color:#000000;
font-family:Tahoma;
font-size:11px;
text-decoration:underline !important;
font-weight:bold !important;
display:block;
}