Skip to content

Commit

Permalink
Removes selection from rgb<->hex selector
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Schultz committed Nov 17, 2016
1 parent c346e80 commit a81f52f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "materialette",
"productName": "Materialette",
"version": "1.2.2",
"version": "1.2.3",
"description": "Material Color Palette for macOS, Windows, and Linux",
"main": "index.js",
"scripts": {
Expand Down
6 changes: 5 additions & 1 deletion styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2413,7 +2413,11 @@ body {

#mode-selector {
display: -ms-flexbox;
display: flex; }
display: flex;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }

#mode-selector:hover {
color: #00e5ff; }
Expand Down
1 change: 1 addition & 0 deletions styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ body {

#mode-selector {
display: flex;
user-select: none;
}
#mode-selector:hover {
color: #00e5ff;
Expand Down

0 comments on commit a81f52f

Please # to comment.