@whitesev/pops 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.amd.js +2 -2
- package/dist/index.amd.js.map +1 -1
- package/dist/index.amd.min.js +1 -1
- package/dist/index.amd.min.js.map +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/dist/index.iife.js +2 -2
- package/dist/index.iife.js.map +1 -1
- package/dist/index.iife.min.js +1 -1
- package/dist/index.iife.min.js.map +1 -1
- package/dist/index.system.js +2 -2
- package/dist/index.system.js.map +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/index.system.min.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/panel/index.css +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@whitesev/pops",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "弹窗库,包含了alert、confirm、prompt、drawer、loading、iframe、rightClickMenu等组件",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/WhiteSevs/TamperMonkeyScript/tree/master/lib/pops#readme",
|
|
@@ -658,6 +658,7 @@ section.pops-panel-container .pops-panel-slider input[type="range"]::-moz-range-
|
|
|
658
658
|
--el-disabled-border-color: #e4e7ed;
|
|
659
659
|
--el-color-danger: #f56c6c;
|
|
660
660
|
|
|
661
|
+
--pops-panel-components-input-border-radius: 4px;
|
|
661
662
|
--pops-panel-components-input-text-color: #000000;
|
|
662
663
|
--pops-panel-components-input-text-bg-color: transparent;
|
|
663
664
|
--pops-panel-components-input-text-default-padding: 8px;
|
|
@@ -682,7 +683,7 @@ section.pops-panel-container .pops-panel-slider input[type="range"]::-moz-range-
|
|
|
682
683
|
align-items: center;
|
|
683
684
|
width: 100%;
|
|
684
685
|
border: 1px solid var(--pops-panel-components-input-bd-color);
|
|
685
|
-
border-radius:
|
|
686
|
+
border-radius: var(--pops-panel-components-input-border-radius);
|
|
686
687
|
background-color: var(--pops-panel-components-input-bg-color);
|
|
687
688
|
box-shadow: none;
|
|
688
689
|
}
|
|
@@ -695,7 +696,7 @@ section.pops-panel-container .pops-panel-slider input[type="range"]::-moz-range-
|
|
|
695
696
|
.pops-panel-input_inner:has(input:focus) {
|
|
696
697
|
outline: 0;
|
|
697
698
|
border: 1px solid var(--pops-panel-components-input-focus-bd-color);
|
|
698
|
-
border-radius:
|
|
699
|
+
border-radius: var(--pops-panel-components-input-border-radius);
|
|
699
700
|
box-shadow: none;
|
|
700
701
|
}
|
|
701
702
|
.pops-panel-input input {
|
|
@@ -812,6 +813,7 @@ section.pops-panel-container .pops-panel-slider input[type="range"]::-moz-range-
|
|
|
812
813
|
|
|
813
814
|
.pops-input-disabled {
|
|
814
815
|
background-color: var(--pops-components-is-disabled-bg-color);
|
|
816
|
+
border-radius: 4px;
|
|
815
817
|
}
|
|
816
818
|
.pops-panel-input.pops-input-disabled:hover {
|
|
817
819
|
--pops-panel-components-input-hover-bd-color: var(--pops-panel-components-input-bd-color);
|