1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-17 18:37:00 +02:00

Fixing issues

This commit is contained in:
Antonio Laguna
2017-06-28 16:12:26 +02:00
parent 43bc612a5b
commit 377de1f0be
2 changed files with 9 additions and 9 deletions

View File

@@ -402,7 +402,7 @@ export default class WebSlides {
disable() { disable() {
this.el.classList.add(CLASSES.DISABLED); this.el.classList.add(CLASSES.DISABLED);
if (this.ws_.plugins.autoslide && if (this.plugins.autoslide &&
this.plugins.autoslide.time !== false) { this.plugins.autoslide.time !== false) {
this.plugins.autoslide.stop(); this.plugins.autoslide.stop();
} }
@@ -414,9 +414,9 @@ export default class WebSlides {
enable() { enable() {
this.el.classList.remove(CLASSES.DISABLED); this.el.classList.remove(CLASSES.DISABLED);
if (this.ws_.plugins.autoslide && if (this.plugins.autoslide &&
this.ws_.plugins.autoslide.time !== false) { this.plugins.autoslide.time !== false) {
this.ws_.plugins.autoslide.play(); this.plugins.autoslide.play();
} }
} }

View File

@@ -242,7 +242,7 @@ figure[class*='text-pull-'] {
text-shadow: 0 0 40px rgba($black, .5); text-shadow: 0 0 40px rgba($black, .5);
} }
/* -- time, ampersands, prepositions (for, of...), symbols... /* -- time, ampersands, prepositions (for, of...), symbols...
[class*='card-'] time, [class*='card-'] time,
h1 span { h1 span {
color: #abd; color: #abd;
@@ -273,7 +273,7 @@ nav[role='navigation'] li {
a { a {
background-color: rgba(50, 50, 50, .9); background-color: rgba(50, 50, 50, .9);
color:#fff; color: $white;
&:hover { &:hover {
background-color: rgba(50, 50, 50, .7); background-color: rgba(50, 50, 50, .7);
@@ -298,7 +298,7 @@ nav[role='navigation'] li {
} }
/*========================================= /*=========================================
Features & Clients List Features & Clients List
=========================================== */ =========================================== */
.features li, .features li,
.clients li { .clients li {
@@ -333,7 +333,7 @@ Features & Clients List
} }
/*=========================================== /*===========================================
flexblock.steps flexblock.steps
============================================= */ ============================================= */
.steps li:nth-child(1) { .steps li:nth-child(1) {
background-color: #e8eef7; background-color: #e8eef7;
@@ -616,7 +616,7 @@ tr:nth-child(even)>td:hover {
} }
/*============================ /*============================
Browser (Screenshots) Browser (Screenshots)
============================== */ ============================== */
.browser { .browser {
border: 1px solid rgba($stratos, .1); border: 1px solid rgba($stratos, .1);