@litianxiang/portal-ui 0.1.8 → 0.1.10
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/dist/styles/element-ui.scss +46 -5
- package/package.json +1 -1
|
@@ -1457,6 +1457,46 @@
|
|
|
1457
1457
|
}
|
|
1458
1458
|
}
|
|
1459
1459
|
}
|
|
1460
|
+
|
|
1461
|
+
&.el-form-item--textarea--border {
|
|
1462
|
+
.el-form-item__label {
|
|
1463
|
+
height: auto;
|
|
1464
|
+
min-height: 80px;
|
|
1465
|
+
display: flex;
|
|
1466
|
+
align-items: center;
|
|
1467
|
+
justify-content: flex-end;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.el-form-item__content {
|
|
1471
|
+
padding: 6px 15px;
|
|
1472
|
+
align-items: stretch;
|
|
1473
|
+
|
|
1474
|
+
.el-textarea {
|
|
1475
|
+
width: 100%;
|
|
1476
|
+
display: flex;
|
|
1477
|
+
flex-direction: column;
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
.el-textarea__inner {
|
|
1481
|
+
flex: 1;
|
|
1482
|
+
border-radius: 0;
|
|
1483
|
+
min-height: 80px;
|
|
1484
|
+
resize: none;
|
|
1485
|
+
|
|
1486
|
+
&:focus {
|
|
1487
|
+
box-shadow: inset 0 0 0 1px #409eff;
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
.el-input__count {
|
|
1492
|
+
position: absolute;
|
|
1493
|
+
right: 10px;
|
|
1494
|
+
bottom: 5px;
|
|
1495
|
+
background: transparent;
|
|
1496
|
+
}
|
|
1497
|
+
}
|
|
1498
|
+
}
|
|
1499
|
+
}
|
|
1460
1500
|
|
|
1461
1501
|
// 错误信息样式 - 隐藏字段下方错误提示(改用弹框提示)
|
|
1462
1502
|
.el-form-item__error {
|
|
@@ -3469,7 +3509,8 @@
|
|
|
3469
3509
|
--el-tabs-header-height: 40px;
|
|
3470
3510
|
|
|
3471
3511
|
.el-tabs__header {
|
|
3472
|
-
margin: 0 0
|
|
3512
|
+
margin: 0 0 5px 0;
|
|
3513
|
+
padding: 5px 10px;
|
|
3473
3514
|
}
|
|
3474
3515
|
|
|
3475
3516
|
.el-tabs__nav-wrap::after {
|
|
@@ -3480,10 +3521,10 @@
|
|
|
3480
3521
|
.el-tabs__item {
|
|
3481
3522
|
height: 40px;
|
|
3482
3523
|
line-height: 40px;
|
|
3483
|
-
padding: 0
|
|
3524
|
+
padding: 0 20px;
|
|
3484
3525
|
color: #303133;
|
|
3485
|
-
font-size:
|
|
3486
|
-
font-weight:
|
|
3526
|
+
font-size: 14px;
|
|
3527
|
+
font-weight: 500;
|
|
3487
3528
|
}
|
|
3488
3529
|
|
|
3489
3530
|
.el-tabs__item:hover {
|
|
@@ -3492,7 +3533,7 @@
|
|
|
3492
3533
|
|
|
3493
3534
|
.el-tabs__item.is-active {
|
|
3494
3535
|
color: #c41230;
|
|
3495
|
-
font-weight:
|
|
3536
|
+
font-weight: 600;
|
|
3496
3537
|
}
|
|
3497
3538
|
|
|
3498
3539
|
.el-tabs__active-bar {
|