JNDemo/target/classes/static/zmquotation/css/index.css

152 lines
2.5 KiB
CSS
Raw Normal View History

2024-01-18 13:05:55 +08:00
.container {
2024-01-25 13:25:57 +08:00
2024-01-18 13:05:55 +08:00
}
.center-container {
text-align: center;
margin: auto;
2024-01-25 13:25:57 +08:00
padding: 10px;
2024-02-18 09:42:08 +08:00
min-width: 1100px;
2024-01-18 13:05:55 +08:00
}
.el-input {
2024-01-25 13:25:57 +08:00
2024-01-18 13:05:55 +08:00
}
2024-02-19 14:38:00 +08:00
/**找到表头那一行,然后把里面的复选框隐藏掉**/
.regionTable .el-table__header-wrapper .el-table__header .el-checkbox {
display: none;
}
2024-01-18 13:05:55 +08:00
.el-input__inner {
height: 30px;
2024-01-25 13:25:57 +08:00
/*font-family: Roboto, serif;*/
2024-01-18 13:05:55 +08:00
font-size: 12px;
line-height: 14px;
}
/**宽度修改 */
.el-select {
width: 129px;
}
/* 下面设置右侧按钮居中 */
.el-input__suffix {
top: 6px;
}
.el-input__icon {
line-height: inherit;
}
.el-input__suffix-inner {
2024-01-25 13:25:57 +08:00
margin-top: 10px;
}
.el-form-item__label {
2024-02-18 09:42:08 +08:00
min-width: 100px;
2024-01-25 13:25:57 +08:00
text-align: justify;
font-size: 12px;
}
.el-input-group{
margin-top: 6px;
}
2024-01-30 16:03:30 +08:00
.el-input-group__append {
width: 0px;
}
2024-01-25 13:25:57 +08:00
.el-form-item__label::after {
content: "";
2024-01-18 13:05:55 +08:00
display: inline-block;
2024-01-25 13:25:57 +08:00
width: 100%;
}
2024-02-19 14:38:00 +08:00
.form-box .el-form-item {
2024-01-25 13:25:57 +08:00
margin: 0px 15px 0px 15px;
}
2024-02-20 16:55:36 +08:00
.regionDialogTable .el-dialog__header{
2024-02-19 14:38:00 +08:00
padding-bottom: 0px;
}
2024-02-20 16:55:36 +08:00
.regionDialogTable .el-dialog__body{
2024-02-19 14:38:00 +08:00
padding-top: 0px;
}
2024-02-20 13:39:33 +08:00
.materialDialogTable .el-dialog__header{
padding-bottom: 0px;
}
.materialDialogTable .el-dialog__body{
padding-top: 0px;
}
2024-02-22 16:51:58 +08:00
.inventoryDialogTable .el-dialog__header{
padding-bottom: 0px;
}
.inventoryDialogTable .el-dialog__body{
padding-top: 0px;
}
2024-02-21 16:55:04 +08:00
.materialDialogTable .el-table__header-wrapper .el-table__header .el-checkbox {
display: none;
2024-01-30 16:03:30 +08:00
}
2024-01-25 13:25:57 +08:00
2024-02-21 16:55:04 +08:00
.el-table .cell {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2024-01-25 13:25:57 +08:00
}
2024-02-21 16:55:04 +08:00
2024-01-25 13:25:57 +08:00
.el-col {
height: 42px;
2024-01-18 13:05:55 +08:00
}
2024-01-25 13:25:57 +08:00
.button-box .el-button {
margin: 10px 80px 10px 0px;
}
.form-box {
background-color: #f0f0f0; /* 浅灰色背景 */
border-radius: 10px; /* 可以根据需要调整边框圆角 */
backdrop-filter: blur(10px); /* 调整模糊度 */
-webkit-backdrop-filter: blur(10px); /* 兼容性处理适用于一些WebKit浏览器 */
}
.button-box {
margin: 10px 0px 10px 0px;
background-color: #f0f0f0; /* 浅灰色背景 */
border-radius: 10px; /* 可以根据需要调整边框圆角 */
backdrop-filter: blur(10px); /* 调整模糊度 */
-webkit-backdrop-filter: blur(10px); /* 兼容性处理适用于一些WebKit浏览器 */
}
.table-box {
2024-02-20 16:55:36 +08:00
}
.selected-item {
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 5px;
padding: 5px;
margin-bottom: 5px;
display: flex;
justify-content: space-between;
}
.remove-btn {
padding: 0px;
color: red;
2024-01-25 13:25:57 +08:00
}