| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- .form-content {
- padding: 10px;
- background-color: #fff;
- height: 100%;
- overflow-y: auto;
- border-radius: 6px;
- position: relative;
- box-sizing: border-box;
- }
- .uni-forms{
- margin-bottom: 20px;
- }
- .form-item {
- display: flex;
- align-items: center;
- flex: 1;
- }
- .item-title{
- text-align: right;
- min-width: max-content;
- }
- .item-title-width {
- display: block;
- min-width: max-content;
- }
- .uni-forms-item{
- margin-bottom: 0;
- border-bottom: 1px dashed #CACCCF;
- }
- :deep(.uni-forms-item__label){
- height: 44px;
- // line-height: 44px;
- font-weight: 500;
- font-size: 16px;
- color: #333333 !important;
- width: max-content !important;
- }
- :deep(.uni-select){
- border: none;
- text-align: right;
- padding-right: 0;
- .uniui-bottom:before {
- content: "\e6b5" !important;
- font-size: 16px !important;
- }
- }
- :deep(.uni-stat-box){
- background-color: transparent;
- }
- :deep(.uni-select--disabled){
- color: inherit;
- background-color: transparent;
- // background-color: #fff;
- }
- :deep(.uni-date-editor--x__disabled){
- opacity: 1;
- }
- :deep(.uni-date-x){
- text-align: right;
- color: inherit;
- font-size: inherit;
- background-color: transparent;
- padding-right: 10px;
- .icon-calendar{
- display: none;
- font-size: 0;
- }
- .uni-date__x-input{
- // color: #999999;
- font-size: inherit;
- padding-right: 0;
- }
- }
- :deep(.uni-easyinput__content-input){
- padding-right: 0;
- }
- :deep(.uni-easyinput__content-textarea){
- min-height: inherit;
- margin: 10px;
- }
- :deep(.content-clear-icon){
- padding: 0;
- font-size: 16px !important;
- }
- .mini-btn {
- padding: 0;
- width: 45px;
- height: 25px;
- font-size: 10px;
- }
|