Skip to content

Commit

Permalink
feat: checkbox focus
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav committed Jun 24, 2023
1 parent 3da5e00 commit d31c357
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ jobs:
- name: Publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
run: poetry publish
run:
poetry publish
2 changes: 1 addition & 1 deletion src/unfold/static/unfold/css/styles.css

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,8 @@ select:after {
}

#page input[type=checkbox] {
@apply appearance-none bg-white block border border-gray-300 cursor-pointer h-4 relative rounded w-4 dark:bg-gray-700 dark:border-gray-500;
}

#page input[type=checkbox]:hover {
@apply border-gray-400;
@apply appearance-none bg-white block border border-gray-300 cursor-pointer h-4 relative rounded w-4 dark:bg-gray-700 dark:border-gray-500 hover:border-gray-400;
@apply focus:outline focus:outline-1 focus:outline-offset-2 focus:outline-primary-500
}

#page input[type=checkbox]:after {
Expand Down

0 comments on commit d31c357

Please sign in to comment.