aboutsummaryrefslogtreecommitdiffstats
path: root/src/scss
diff options
context:
space:
mode:
authorSam <me@sampotts.me>2016-04-28 23:35:18 +1000
committerSam <me@sampotts.me>2016-04-28 23:35:18 +1000
commit9a6433488f851f2d6e53afefc02a7f1d3397b61d (patch)
tree2147c175d7bd02be0cbdd0b16b59a2a84a8152a4 /src/scss
parente3baa43b227eb8b156d3f9032f395cec989cc2a1 (diff)
downloadplyr-9a6433488f851f2d6e53afefc02a7f1d3397b61d.tar.lz
plyr-9a6433488f851f2d6e53afefc02a7f1d3397b61d.tar.xz
plyr-9a6433488f851f2d6e53afefc02a7f1d3397b61d.zip
Tooltip bug fixes
Diffstat (limited to 'src/scss')
-rw-r--r--src/scss/plyr.scss4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/scss/plyr.scss b/src/scss/plyr.scss
index d7976b39..465df084 100644
--- a/src/scss/plyr.scss
+++ b/src/scss/plyr.scss
@@ -421,7 +421,6 @@
// Tooltips
// --------------------------------------------------------------
.plyr__tooltip {
- visibility: hidden;
position: absolute;
z-index: 2;
bottom: 100%;
@@ -441,7 +440,7 @@
transform: translate(-50%, 10px) scale(.8);
transform-origin: 50% 100%;
- transition: transform .2s .1s ease, opacity .2s .1s ease, visibility .3s ease;
+ transition: transform .2s .1s ease, opacity .2s .1s ease;
// Arrows
&::before {
@@ -464,7 +463,6 @@
.plyr button:hover .plyr__tooltip,
.plyr button.tab-focus:focus .plyr__tooltip,
.plyr__tooltip--visible {
- visibility: visible;
opacity: 1;
transform: translate(-50%, 0) scale(1);
}