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) {
|
||||
background: none;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
:local(.button:active) {
|
||||
background-color: $motion-transparent;
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
.color-button-swatch {
|
||||
position: relative;
|
||||
display: flex;
|
||||
cursor: pointer;
|
||||
flex-basis: 2rem;
|
||||
flex-shrink: 0;
|
||||
height: 100%;
|
||||
|
@ -17,6 +18,8 @@
|
|||
|
||||
.color-button-arrow {
|
||||
display: flex;
|
||||
user-select: none;
|
||||
cursor: pointer;
|
||||
flex-basis: 1rem;
|
||||
flex-shrink: 0;
|
||||
height: 100%;
|
||||
|
|
Loading…
Reference in a new issue