diff options
author | J <j@ini.onl> | 2017-09-09 13:25:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-09 13:25:22 +0200 |
commit | bf02c69daa21c7b208808feec5e05f73d62884ce (patch) | |
tree | 3c39260d7d25fa927c86f36cf8f4eb86d028e6c9 | |
parent | 3fe0c7c84b00e5b2ea0e560782b60a4d96000f67 (diff) | |
download | plyr-bf02c69daa21c7b208808feec5e05f73d62884ce.tar.lz plyr-bf02c69daa21c7b208808feec5e05f73d62884ce.tar.xz plyr-bf02c69daa21c7b208808feec5e05f73d62884ce.zip |
Enable start/stop toggle on whole element
Related to issue https://github.com/sampotts/plyr/issues/587
-rw-r--r-- | src/scss/plyr.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/scss/plyr.scss b/src/scss/plyr.scss index 91a5d1b2..4ca45512 100644 --- a/src/scss/plyr.scss +++ b/src/scss/plyr.scss @@ -267,7 +267,11 @@ align-items: center; line-height: 1; text-align: center; - + pointer-events: none; + & > * { + pointer-events: all; + } + // Spacing > button, .plyr__progress, |