diff options
author | Ollie H <renahlee@outlook.com> | 2023-05-03 22:54:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 00:54:59 -0500 |
commit | 33bf9c38695c24ede28d68810d1f6b2e68f86f5f (patch) | |
tree | bc9bdbb9914de2228fa68bdaf26c33acc0ba3f7f | |
parent | d97e75c62f39b874af97b40ebc7211841d9ce1b7 (diff) | |
download | voidsky-33bf9c38695c24ede28d68810d1f6b2e68f86f5f.tar.zst |
Remove focus outline on composer (#572)
-rw-r--r-- | bskyweb/templates/base.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index dfeae02c7..866664e50 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -59,6 +59,9 @@ /* OLLIE: TODO -- this is not accessible */ /* Remove focus state on inputs */ + .ProseMirror-focused { + outline: 0; + } input:focus { outline: 0; } |