细节修改

This commit is contained in:
2024-05-30 16:34:29 +08:00
parent 615fe82be5
commit d3ddb47eae
6 changed files with 1105 additions and 763 deletions

View File

@@ -204,6 +204,14 @@ uni-button[disabled]:not([type]), uni-button[disabled][type=default] {
border: 1px solid #889dc7;
box-shadow: 0 0 0 1px rgba(136, 157, 199,.2);
}
.td_change {
font-size: 12px;
line-height: 26px;
padding: 0 10px;
background-color: transparent;
border: 1px solid #4980BD;
border-radius: 6px;
}
.td_scan_wraper {
min-width: 120px;
}
@@ -276,6 +284,13 @@ uni-button[disabled]:not([type]), uni-button[disabled][type=default] {
word-break: break-all;
overflow: hidden;
}
.zd-td text {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3; /* 定义显示的行数 */
overflow: hidden;
text-overflow: ellipsis;
}
.zd-sec-td {
display: flex;
justify-content: center;
@@ -291,6 +306,13 @@ uni-button[disabled]:not([type]), uni-button[disabled][type=default] {
word-break: break-all;
overflow: hidden;
}
.zd-sec-td text {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3; /* 定义显示的行数 */
overflow: hidden;
text-overflow: ellipsis;
}
.zd-td-checked .zd-td {
background-color: rgba(63,106,202,0.3);
border-bottom: 0
@@ -498,4 +520,12 @@ uni-button[disabled]:not([type]), uni-button[disabled][type=default] {
color: #fff;
border: 1px solid #21D0F2;
border-radius: 12px
}
/** 日历 */
.uni-calendar__header {
height: 40px !important;
}
.uni-calendar-item__weeks-box-item {
width: 40px !important;
height: 40px !important;
}

View File

@@ -147,6 +147,9 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
.mgl0 {
margin-left: 0 !important;
}
.mgl10 {
margin-left: 10px;
}
.mgr5 {
margin-right: 5px;
}
@@ -181,4 +184,11 @@ input[type="button"], input[type="submit"], input[type="search"], input[type="re
position: sticky;
top: 0;
z-index: 10;
}
.ellipsis-multiline {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3; /* 定义显示的行数 */
overflow: hidden;
text-overflow: ellipsis;
}