Skip to content

Commit

Permalink
refactor: manually prefix CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
rkunev committed Aug 1, 2021
1 parent 5696fb1 commit 89b814a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"@vue/babel-preset-app": "4.3.1",
"@vue/compiler-sfc": "3.1.5",
"@vue/test-utils": "2.0.0-rc.11",
"autoprefixer": "10.3.1",
"babel-jest": "26.6.3",
"chalk": "4.1.2",
"cliui": "7.0.4",
Expand All @@ -43,7 +42,6 @@
"husky": "7.0.1",
"jest": "26.6.3",
"lint-staged": "11.1.1",
"postcss": "8.3.6",
"prettier": "2.3.2",
"size-limit": "5.0.2",
"vite": "2.4.4",
Expand Down
5 changes: 0 additions & 5 deletions postcss.config.js

This file was deleted.

5 changes: 4 additions & 1 deletion src/ColorPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,8 @@
.rcp button {
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
box-sizing: border-box;
}
Expand Down Expand Up @@ -315,6 +317,7 @@
height: 100%;
background-size: 100% 100%;
background-image: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
-webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 53.5%, black 54%);
mask-image: radial-gradient(circle at 50% 50%, transparent 53.5%, black 54%);
border-radius: 50%;
overflow: hidden;
Expand Down Expand Up @@ -366,7 +369,7 @@
}
.disabled .rcp__knob {
box-shadow: none !important;
box-shadow: none;
pointer-events: none;
}
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2360,7 +2360,7 @@ atob@^2.1.2:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==

autoprefixer@10.3.1, autoprefixer@^10.2.6:
autoprefixer@^10.2.6:
version "10.3.1"
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.3.1.tgz#954214821d3aa06692406c6a0a9e9d401eafbed2"
integrity sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==
Expand Down Expand Up @@ -6492,7 +6492,7 @@ postcss-value-parser@^4.1.0:
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==

postcss@8.3.6, postcss@^8.1.10, postcss@^8.2.15, postcss@^8.3.5, postcss@^8.3.6:
postcss@^8.1.10, postcss@^8.2.15, postcss@^8.3.5, postcss@^8.3.6:
version "8.3.6"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.3.6.tgz#2730dd76a97969f37f53b9a6096197be311cc4ea"
integrity sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==
Expand Down

0 comments on commit 89b814a

Please sign in to comment.