resolver-egretimp-plus 0.0.212 → 0.0.214

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.
@@ -0,0 +1,16 @@
1
+ .el-checkbox {
2
+ --el-checkbox-border-radius: 4px;
3
+ --el-checkbox-input-height: 16px;
4
+ --el-checkbox-input-width: 16px;
5
+ }
6
+ .el-checkbox__inner::after {
7
+ border: 2px solid transparent;
8
+ border-left: 0;
9
+ border-top: 0;
10
+ height: 6px;
11
+ left: 5px;
12
+ top: 2px;
13
+ }
14
+ .el-checkbox__input.is-indeterminate .el-checkbox__inner::before {
15
+ height: 4px;
16
+ }
@@ -106,4 +106,17 @@
106
106
  border-top: none;
107
107
  border-bottom: none;
108
108
  }
109
+ }
110
+ .no-collpase {
111
+ & > .el-collapse-item__header {
112
+ .el-collapse-item__arrow {
113
+ display: none;
114
+ }
115
+ }
116
+ &.el-collapse-item.is-disabled .el-collapse-item__header {
117
+ color: var(--el-collapse-header-height);
118
+ }
119
+ &.el-collapse-item.is-disabled .el-collapse-item__header {
120
+ cursor: default;
121
+ }
109
122
  }
@@ -45,3 +45,5 @@
45
45
  @import './dialog.scss';
46
46
  @import './textarea.scss';
47
47
  @import './text.scss';
48
+ @import './pagination.scss';
49
+ @import './checkbox.scss';
@@ -0,0 +1,8 @@
1
+ .el-pagination {
2
+ // --el-color-primary: #EAF0FE;
3
+ // --el-pagination-border-radius: 4px;
4
+ }
5
+ .el-pagination.is-background .btn-prev.is-active, .el-pagination.is-background .btn-next.is-active, .el-pagination.is-background .el-pager li.is-active {
6
+ background-color: #EAF0FE;
7
+ color: #3271FE;
8
+ }