Skip to content

Commit

Permalink
Merge pull request #180 from jerone/tool-bar-fixes
Browse files Browse the repository at this point in the history
Fix compatibilty with Tool Bar package
  • Loading branch information
thomaslindstrom committed May 10, 2016
2 parents ea50ced + 335fce5 commit 7a680d5
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions styles/ColorPicker.less
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,22 @@
.ColorPicker {
height: 0; // Height is computed
position: absolute;
visibility: hidden;
display: none;
opacity: 0;
pointer-events: none;
user-select: none;
z-index: 100;

transition:
opacity .15s,
visibility 0 .15s;
opacity .15s;
backface-visibility: hidden;
transform-style: preserve-3d;

// -------------------------------------
// : `is open` modifier
// -------------------------------------
&.is--open {
visibility: visible;
display: block;
opacity: 1;
pointer-events: all;

Expand Down

0 comments on commit 7a680d5

Please sign in to comment.