bri-components 1.2.43 → 1.2.45

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": "bri-components",
3
- "version": "1.2.43",
3
+ "version": "1.2.45",
4
4
  "author": "dengshanghui",
5
5
  "description": "a component lib for vue project",
6
6
  "main": "src/index.js",
@@ -37,7 +37,7 @@
37
37
  "jsonlint": "^1.6.3",
38
38
  "minio": "7.1.0",
39
39
  "stream": "^0.0.2",
40
- "view-design": "^4.6.0",
40
+ "view-design": "4.6.0",
41
41
  "viewerjs": "^1.10.2",
42
42
  "vue-codemirror": "^4.0.6",
43
43
  "vue-cropperjs": "^4.1.0",
@@ -1,5 +1,29 @@
1
- .pointer {
2
- cursor: pointer;
1
+ .bri-scrollbar3 {
2
+ overflow: auto;
3
+
4
+ &::-webkit-scrollbar {
5
+ width: 6px;
6
+ height: 6px;
7
+ }
8
+
9
+ &::-webkit-scrollbar-thumb {
10
+ border-radius: 3px;
11
+ background: rgba(51, 51, 51, .1);
12
+ background-clip: border-box;
13
+ }
14
+ }
15
+ // 宽度为6
16
+ .bri-scrollbar6 {
17
+ &::-webkit-scrollbar {
18
+ height: 6px;
19
+ width: 6px;
20
+ }
21
+
22
+ &::-webkit-scrollbar-thumb {
23
+ border-radius: 3px;
24
+ background: rgba(51, 51, 51, .1);
25
+ background-clip: border-box;
26
+ }
3
27
  }
4
28
 
5
29
  #dsh-sign-change () {
@@ -44,54 +44,4 @@ li {
44
44
  background: rgba(187, 187, 187, 0.8);
45
45
  background-clip: padding-box;
46
46
  border: 2px solid rgba(0, 0, 0, 0);
47
- }
48
-
49
- // 宽度为6
50
- .bri-scrollbar6 {
51
- &::-webkit-scrollbar {
52
- height: 6px;
53
- width: 6px;
54
- }
55
-
56
- &::-webkit-scrollbar-thumb {
57
- border-radius: 3px;
58
- background: rgba(51, 51, 51, .1);
59
- background-clip: border-box;
60
- }
61
- }
62
-
63
- .bri-scrollbar3 {
64
- overflow: auto;
65
- &::-webkit-scrollbar {
66
- width: 6px;
67
- height: 6px;
68
- }
69
-
70
- &:-webkit-scrollbar-thumb {
71
- border-radius: 3px;
72
- background: rgba(51, 51, 51, .1);
73
- background-clip: border-box;
74
- }
75
- }
76
-
77
- .dsh-scrollbar3::-webkit-scrollbar {
78
- height: 3px;
79
- width: 3px;
80
-
81
- &::-webkit-scrollbar-thumb {
82
- border-radius: 3px;
83
- background: rgba(225, 232, 237, 1);
84
- background-clip: border-box;
85
- }
86
- }
87
-
88
- .dsh-scrollbar6::-webkit-scrollbar {
89
- height: 6px;
90
- width: 6px;
91
-
92
- &::-webkit-scrollbar-thumb {
93
- border-radius: 5px;
94
- background: rgba(225, 232, 237, 1);
95
- background-clip: border-box;
96
- }
97
47
  }