07/08/26 11:54:01 oNIXRD510
>350
フィルタ不要。ユーザスタイルシートで対応できる。
改行制限があるから、ちょっと読みにくい書き方になるけど。
IE 使用の場合
* { cursor: auto !important; }
a, a * { cursor: pointer !important; }
Firefox 使用の場合(おそらく、area に対する指定は効いていない)
*:not(area), a[name], a[id] { cursor: auto !important; }
area, a[href], a[href] * { cursor: pointer !important; }
Firefox 使用の場合(お好みで追加)
*[onclick*="window.open"], *[onkeypress*="window.open"],
*[onkeydown*="window.open"], *[onmousedown*="window.open"] { cursor: pointer; }
*[onclick*="window.close"], *[onkeypress*="window.close"],
*[onkeydown*="window.close"], *[onmousedown*="window.close"] { cursor: pointer; }
*[onclick*="document.location"], *[onkeypress*="document.location"],
*[onkeydown*="document.location"],
*[onmousedown*="document.location"] { cursor: pointer; }
あとのブラウザはほとんど使ってないので試していない。