iv-npm 1.0.18 → 1.0.19

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iv-npm",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -0,0 +1,91 @@
1
+ /* 模态框 */
2
+ body .detail-class {
3
+ top: -50px;
4
+ }
5
+ /* body .ant-modal{
6
+ width: 84vw!important;
7
+ height: 80vh!important;
8
+ } */
9
+ body .module-class .ant-modal-header {
10
+ padding: 0;
11
+ }
12
+ body .module-class .ant-modal-body {
13
+ position: relative;
14
+ padding: 100px 0 100px 100px;
15
+ }
16
+
17
+ body .detail-class .ant-modal-body {
18
+ overflow: auto;
19
+ padding: 0 0 30px 0;
20
+ }
21
+
22
+ body .module-class.not-padding .ant-modal-body {
23
+ position: relative;
24
+ padding: 0;
25
+ }
26
+ body .module-class.pwd .ant-modal-body {
27
+ position: relative;
28
+ padding: 100px 0;
29
+ }
30
+
31
+ .ant-scrolling-effect {
32
+ width: 100% !important;
33
+ }
34
+ /* 组件模态框 */
35
+ body .module-class.modal-components .ant-modal {
36
+ top: 5%;
37
+ left: 0px;
38
+ margin-left: 5%;
39
+ margin-right: 5%;
40
+ height: 40%;
41
+ width: auto !important;
42
+ }
43
+ body .module-class.modal-components .ant-modal .ant-modal-content {
44
+ height: 100%;
45
+ }
46
+ body .module-class .ant-modal-content {
47
+ box-sizing: border-box;
48
+ border-radius: 10px;
49
+ overflow: hidden;
50
+ /* border: 5px solid #f1f1f1; */
51
+ }
52
+ body
53
+ .module-class.modal-components
54
+ .ant-modal
55
+ .ant-modal-content
56
+ .ant-modal-body {
57
+ height: 100%;
58
+ overflow-y: auto;
59
+ }
60
+ body
61
+ .module-class.modal-components
62
+ .ant-modal
63
+ .ant-modal-content
64
+ .ant-modal-body::-webkit-scrollbar {
65
+ width: 15px;
66
+ height: 20px;
67
+ }
68
+ body
69
+ .module-class.modal-components
70
+ .ant-modal
71
+ .ant-modal-content
72
+ .ant-modal-body::-webkit-scrollbar-track {
73
+ border-radius: 100vh;
74
+ background: #f7f4ed;
75
+ }
76
+ body
77
+ .module-class.modal-components
78
+ .ant-modal
79
+ .ant-modal-content
80
+ .ant-modal-body::-webkit-scrollbar-thumb {
81
+ background: #e0cbcb;
82
+ border-radius: 100vh;
83
+ border: 3px solid #f6f7ed;
84
+ }
85
+ body
86
+ .module-class.modal-components
87
+ .ant-modal
88
+ .ant-modal-content
89
+ .ant-modal-body::-webkit-scrollbar-thumb:hover {
90
+ background: #c0a0b9;
91
+ }