diff options
author | Chocobozzz <me@florianbigard.com> | 2019-06-05 09:25:44 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-06-06 11:43:01 +0200 |
commit | 776ca9b1cc21daf96b48ecc9cc70a50ee3bfaf68 (patch) | |
tree | cd83decfd64e1f1a8be42beb0d99b9f8e50f6607 /client/src/sass/include | |
parent | 93aa85521ae105476cf3122950813593d9105333 (diff) | |
download | PeerTube-776ca9b1cc21daf96b48ecc9cc70a50ee3bfaf68.tar.gz PeerTube-776ca9b1cc21daf96b48ecc9cc70a50ee3bfaf68.tar.zst PeerTube-776ca9b1cc21daf96b48ecc9cc70a50ee3bfaf68.zip |
Fix checkbox outline
Diffstat (limited to 'client/src/sass/include')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 228a6116e..d4a2269a1 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -332,10 +332,10 @@ | |||
332 | 332 | ||
333 | @mixin peertube-checkbox ($border-width) { | 333 | @mixin peertube-checkbox ($border-width) { |
334 | opacity: 0; | 334 | opacity: 0; |
335 | width: 0; | 335 | position: absolute; |
336 | 336 | ||
337 | &:focus + span { | 337 | &:focus + span { |
338 | outline: auto; | 338 | outline: 1px solid #1e5180; |
339 | } | 339 | } |
340 | 340 | ||
341 | & + span { | 341 | & + span { |