Merge pull request #115 from mewtaylor/issue/user-select

Fix GH-98: Remove user select state from form fields in paint
This commit is contained in:
Paul Kaplan 2017-10-27 10:25:07 -04:00 committed by GitHub
commit 7fa1a7ca26
2 changed files with 4 additions and 0 deletions

View file

@ -3,6 +3,7 @@
:local(.button) { :local(.button) {
background: none; background: none;
cursor: pointer; cursor: pointer;
user-select: none;
} }
:local(.button:active) { :local(.button:active) {
background-color: $motion-transparent; background-color: $motion-transparent;

View file

@ -7,6 +7,7 @@
.color-button-swatch { .color-button-swatch {
position: relative; position: relative;
display: flex; display: flex;
cursor: pointer;
flex-basis: 2rem; flex-basis: 2rem;
flex-shrink: 0; flex-shrink: 0;
height: 100%; height: 100%;
@ -17,6 +18,8 @@
.color-button-arrow { .color-button-arrow {
display: flex; display: flex;
user-select: none;
cursor: pointer;
flex-basis: 1rem; flex-basis: 1rem;
flex-shrink: 0; flex-shrink: 0;
height: 100%; height: 100%;