@litianxiang/portal-ui 0.1.9 → 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 +40 -0
- 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 {
|