aboutsummaryrefslogtreecommitdiffstats
path: root/src/sass
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2018-05-19 11:27:19 +1000
committerGitHub <noreply@github.com>2018-05-19 11:27:19 +1000
commit3bba65f2c22fe11bca7d89f8451fa1b0b5e8030e (patch)
treeab3de56cae1205b9964ecccb9dea57aa41a3695c /src/sass
parent1bab0d07b5b22230aab6e68105c8fc574add31e3 (diff)
parent37c5fbfe16ba0969b727b8359fdd04eb0bf7a021 (diff)
downloadplyr-3bba65f2c22fe11bca7d89f8451fa1b0b5e8030e.tar.lz
plyr-3bba65f2c22fe11bca7d89f8451fa1b0b5e8030e.tar.xz
plyr-3bba65f2c22fe11bca7d89f8451fa1b0b5e8030e.zip
Merge pull request #967 from friday/883
toggleControls rewrite
Diffstat (limited to 'src/sass')
-rw-r--r--src/sass/plyr.scss1
-rw-r--r--src/sass/states/error.scss25
2 files changed, 0 insertions, 26 deletions
diff --git a/src/sass/plyr.scss b/src/sass/plyr.scss
index 65134331..e934cf92 100644
--- a/src/sass/plyr.scss
+++ b/src/sass/plyr.scss
@@ -39,7 +39,6 @@
@import 'components/video';
@import 'components/volume';
-@import 'states/error';
@import 'states/fullscreen';
@import 'plugins/ads';
diff --git a/src/sass/states/error.scss b/src/sass/states/error.scss
deleted file mode 100644
index 64d05c7b..00000000
--- a/src/sass/states/error.scss
+++ /dev/null
@@ -1,25 +0,0 @@
-// --------------------------------------------------------------
-// Error state
-// --------------------------------------------------------------
-
-.plyr--has-error {
- pointer-events: none;
-
- &::after {
- align-items: center;
- background: rgba(#000, 90%);
- color: #fff;
- content: attr(data-plyr-error);
- display: flex;
- font-size: $plyr-font-size-base;
- height: 100%;
- justify-content: center;
- left: 0;
- position: absolute;
- text-align: center;
- text-shadow: 0 1px 1px rgba(#000, 10%);
- top: 0;
- width: 100%;
- z-index: 10;
- }
-}