修复颜色页面bug
This commit is contained in:
@@ -1096,7 +1096,7 @@ li {
|
||||
margin-right: 15px;
|
||||
flex-shrink: 0;
|
||||
display: block;
|
||||
width: 100px;
|
||||
width: 10rem;
|
||||
text-align: right;
|
||||
}
|
||||
.admin_page .admin_state_item > input {
|
||||
@@ -1144,13 +1144,13 @@ li {
|
||||
.admin_page .admin_table_search .admin_state_list .admin_state_list_item {
|
||||
cursor: pointer;
|
||||
width: auto;
|
||||
border-radius: 1rem;
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 10px;
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #b6b6b6;
|
||||
background: #39215b;
|
||||
color: #fff;
|
||||
margin: 0 2rem 2rem 0;
|
||||
font-size: 1.8rem;
|
||||
margin: 0 10px 10px 0;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.admin_page .admin_table_search .admin_state_list .admin_state_list_item:last-child {
|
||||
@@ -1209,6 +1209,19 @@ li {
|
||||
.admin_page .admin_table_content .ant-table-body::-webkit-scrollbar {
|
||||
width: 0 !important;
|
||||
}
|
||||
.admin_page .admin_table_content .ant-table-body::-webkit-scrollbar-horizontal {
|
||||
height: 2px !important;
|
||||
width: 2px !important;
|
||||
}
|
||||
.admin_page .admin_table_content .ant-table-body::-webkit-scrollbar-thumb:horizontal {
|
||||
background-color: #8a8a8a;
|
||||
/* 水平滚动条手柄颜色 */
|
||||
border-radius: 5px;
|
||||
}
|
||||
.admin_page .admin_table_content .ant-table-body::-webkit-scrollbar-track:horizontal {
|
||||
background-color: #f1f1f1;
|
||||
/* 水平滚动条轨道颜色 */
|
||||
}
|
||||
.admin_page .admin_table_content .ant-table-thead > tr > th {
|
||||
background: #ffffff;
|
||||
border-bottom: none;
|
||||
|
||||
@@ -1224,7 +1224,8 @@ input:focus{
|
||||
flex-shrink: 0;
|
||||
display: block;
|
||||
// min-width: 20%;
|
||||
width: 100px;
|
||||
// width: 100px;
|
||||
width: 10rem;
|
||||
text-align: right;
|
||||
}
|
||||
>input{
|
||||
@@ -1273,13 +1274,13 @@ input:focus{
|
||||
.admin_state_list_item{
|
||||
cursor: pointer;
|
||||
width: auto;
|
||||
border-radius: 1rem;
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 10px;
|
||||
padding: 5px 10px;
|
||||
border: 1px solid #b6b6b6;
|
||||
background: #39215b;
|
||||
color: #fff;
|
||||
margin: 0 2rem 2rem 0;
|
||||
font-size: 1.8rem;
|
||||
margin: 0 10px 10px 0;
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
.admin_state_list_item:last-child{
|
||||
@@ -1339,10 +1340,21 @@ input:focus{
|
||||
overflow-y: auto !important;
|
||||
-ms-overflow-style: none;
|
||||
overflow: -moz-scrollbars-none;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
width: 0 !important;
|
||||
}
|
||||
&::-webkit-scrollbar-horizontal {
|
||||
height: 2px !important;
|
||||
width: 2px !important;
|
||||
}
|
||||
&::-webkit-scrollbar-thumb:horizontal {
|
||||
background-color: #8a8a8a; /* 水平滚动条手柄颜色 */
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track:horizontal {
|
||||
background-color: #f1f1f1; /* 水平滚动条轨道颜色 */
|
||||
}
|
||||
}
|
||||
.ant-table-thead > tr > th {
|
||||
background: #ffffff;
|
||||
|
||||
Reference in New Issue
Block a user