|
|
@@ -27,6 +27,20 @@ $hr-list-pages: (
|
|
|
".asa-page"
|
|
|
);
|
|
|
|
|
|
+/* 乾坤主应用常给 button/span 设 1.5+ 行高,生产环境按钮文字会偏下 */
|
|
|
+.ele-body .el-button {
|
|
|
+ display: inline-flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ line-height: 1;
|
|
|
+
|
|
|
+ > span,
|
|
|
+ > i,
|
|
|
+ [class*="el-icon-"] {
|
|
|
+ line-height: 1;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
@each $root in $hr-list-pages {
|
|
|
/* 搜索标签恢复默认右对齐,贴着输入框,避免固定宽度把间距拉开 */
|
|
|
#{$root} .ele-form-search .el-form-item__label,
|
|
|
@@ -62,22 +76,38 @@ $hr-list-pages: (
|
|
|
height: 28px;
|
|
|
padding: 0 12px;
|
|
|
font-size: 12px;
|
|
|
- line-height: 26px;
|
|
|
+ line-height: 1;
|
|
|
+ display: inline-flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ box-sizing: border-box;
|
|
|
+
|
|
|
+ > span,
|
|
|
+ > i,
|
|
|
+ [class*="el-icon-"] {
|
|
|
+ line-height: 1;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
#{$root} .el-table th.el-table__cell {
|
|
|
height: 28px !important;
|
|
|
padding: 0 !important;
|
|
|
font-size: 14px !important;
|
|
|
- line-height: 28px !important;
|
|
|
+ line-height: 1 !important;
|
|
|
font-weight: 500 !important;
|
|
|
}
|
|
|
|
|
|
#{$root} .el-table th.el-table__cell > .cell {
|
|
|
height: 28px !important;
|
|
|
- line-height: 28px !important;
|
|
|
+ line-height: 1 !important;
|
|
|
padding-top: 0 !important;
|
|
|
padding-bottom: 0 !important;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ #{$root} .el-table th.el-table__cell.is-center > .cell {
|
|
|
+ justify-content: center;
|
|
|
}
|
|
|
|
|
|
#{$root} .el-table .el-link + .el-link {
|