mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2025-01-09 14:12:13 -05:00
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:
commit
7fa1a7ca26
2 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||||
|
|
|
@ -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%;
|
||||||
|
|
Loading…
Reference in a new issue