Merge branch 'master' into docs

This commit is contained in:
Wyatt Johnson
2018-03-26 16:26:57 -06:00
committed by GitHub
4 changed files with 18 additions and 9 deletions
@@ -3,7 +3,6 @@
background-color: #F6F6F6;
padding: 10px;
margin: 20px 0px 20px 10px;
font-style: italic;
border-radius: 2px;
&::after {
content: none;
@@ -23,16 +23,15 @@
border: none;
color: #4e4e4e;
margin-right: 3px;
border-radius: 3px;
}
.button:hover{
.button:hover {
cursor: pointer;
border-radius: 3px;
background-color: #eae8e8;
}
.active {
border-radius: 3px;
.button.active {
background-color: #ddd;
}
@@ -41,3 +40,12 @@
cursor: default;
background: none;
}
@media (-moz-touch-enabled: 1), (pointer:coarse) {
.button:hover{
background-color: transparent;
}
.button.active {
background-color: #ddd;
}
}
@@ -1,5 +1,5 @@
import createToggle from '../factories/createToggle';
import { findIntersecting } from '../lib/dom';
import { findIntersecting, findAncestor } from '../lib/dom';
const boldTags = ['B', 'STRONG'];
@@ -21,7 +21,8 @@ function isDisabled() {
n =>
n.nodeName !== '#text' &&
window.getComputedStyle(n).getPropertyValue('font-weight') === 'bold' &&
!boldTags.includes(n.tagName),
!boldTags.includes(n.tagName) &&
!findAncestor(n, n => boldTags.includes(n.tagName), this.container),
this.container
);
}
@@ -1,5 +1,5 @@
import createToggle from '../factories/createToggle';
import { findIntersecting } from '../lib/dom';
import { findIntersecting, findAncestor } from '../lib/dom';
const italicTags = ['I', 'EM'];
@@ -19,7 +19,8 @@ function isDisabled() {
n =>
n.nodeName !== '#text' &&
window.getComputedStyle(n).getPropertyValue('font-style') === 'italic' &&
!italicTags.includes(n.tagName),
!italicTags.includes(n.tagName) &&
!findAncestor(n, n => italicTags.includes(n.tagName), this.container),
this.container
);
}