raise-common-lib 0.0.219 → 0.0.221

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": "raise-common-lib",
3
- "version": "0.0.219",
3
+ "version": "0.0.221",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^8.2.3 || ^9.0.0",
6
6
  "@angular/core": "^8.2.3 || ^9.0.0"
@@ -15,7 +15,7 @@
15
15
  height: auto;
16
16
  border-top: none;
17
17
  border-bottom: none;
18
- padding-right: 5px !important;
18
+ padding-right: 16px !important;
19
19
  .e-headercell {
20
20
  &:first-child {
21
21
  padding-left: 8px;
@@ -47,26 +47,20 @@ input {
47
47
  outline: 0;
48
48
  }
49
49
 
50
- ul,li{
51
- margin: 0;
52
- padding: 0;
53
- list-style: none;
54
- }
55
-
56
50
  p {
57
51
  margin: 0;
58
52
  }
59
53
 
60
54
  ::-webkit-scrollbar {
61
- // 滚动条样式
62
- width: 5px;
63
- height: 5px;
64
- background: #ffffff;
65
- position: static;
66
- z-index: 999;
55
+ width: 16px; /* 垂直滚动条 */
56
+ height: 16px; /* 水平滚动条 */
57
+ background: transparent !important;
67
58
  }
59
+
60
+ /* 设置滚动条滑块宽度为6px(通过边框实现居中效果)*/
68
61
  ::-webkit-scrollbar-thumb {
69
- // 滚动条滑块颜色
70
- background: rgba(108, 124, 144, 0.3);
71
- border-radius: 3px;
62
+ border-radius: 8px;
63
+ background: rgba(108, 124, 144, 0.22);
64
+ border: 5px solid transparent;
65
+ background-clip: content-box;
72
66
  }