We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tabキーでフォームを操作する場合に、ボタンにカーソルを合わせても見た目が変化しない。 フォーカスが合っているのかいないのかが判別できない状態はよくないので、hover時と同じ表示となるようにする。
The text was updated successfully, but these errors were encountered:
JButton コンポーネントのCSSで hover 時の動作を記述しているところに、 :focus の場合を追加する。
JButton
:focus
&:hover { ... }
↓
&:hover, &:focus { ... }
Sorry, something went wrong.
No branches or pull requests
Tabキーでフォームを操作する場合に、ボタンにカーソルを合わせても見た目が変化しない。
フォーカスが合っているのかいないのかが判別できない状態はよくないので、hover時と同じ表示となるようにする。
The text was updated successfully, but these errors were encountered: