mirror of
https://gitee.com/victor123/jjjerp-java.git
synced 2025-12-07 06:08:24 +08:00
153 lines
2.8 KiB
SCSS
153 lines
2.8 KiB
SCSS
.draggable-list {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
.draggable-list .wrapper {
|
|
display: flex;
|
|
}
|
|
.draggable-list .wrapper > span {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.draggable-list .item {
|
|
position: relative;
|
|
width: 110px;
|
|
height: 110px;
|
|
margin-top: 5px;
|
|
margin-right: 5px;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
border: 1px solid #dddddd;
|
|
}
|
|
|
|
.draggable-list.small .item {
|
|
width: 62px;
|
|
height: 62px;
|
|
}
|
|
.draggable-list .delete-btn {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
background: red;
|
|
line-height: 16px;
|
|
font-size: 16px;
|
|
color: #ffffff;
|
|
display: none;
|
|
}
|
|
|
|
.draggable-list .item:hover .delete-btn {
|
|
display: block;
|
|
}
|
|
|
|
.draggable-list .item img {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.draggable-list .img-select {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: 1px dashed #dddddd;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.draggable-list .img-select i {
|
|
color: #101010;
|
|
}
|
|
|
|
/* 编译器 */
|
|
.edit_container {
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
line-height: 20px;
|
|
color: #2c3e50;
|
|
height: auto !important;
|
|
}
|
|
.ql-editor {
|
|
height: 400px;
|
|
}
|
|
// .menu-wrapper .nav-wrapper .nav-ul .router-link-active {
|
|
// color: var(--el-color-primary);
|
|
// background: #ffffff;
|
|
// }
|
|
.menu-wrapper .nav-wrapper .nav-ul .router-link-active.item-box.iconname {
|
|
color: var(--el-color-primary);
|
|
}
|
|
.menu-wrapper .menu-logo .home-login .home-icon {
|
|
color: var(--el-color-primary);
|
|
}
|
|
.menu-wrapper .nav-wrapper .menuBox .child-menu .router-link-active {
|
|
background: var(--el-color-primary-light-9);
|
|
color: var(--el-color-primary);
|
|
}
|
|
.secondary-title .secondary-title-icon {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
background: var(--el-color-primary-light-9);
|
|
margin-right: 6px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.secondary-title .menu-item-icon.icon.iconfont {
|
|
font-size: 18px;
|
|
color: var(--el-color-primary);
|
|
}
|
|
.column-dialog {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 470px;
|
|
.el-input {
|
|
--el-input-height: 28px;
|
|
}
|
|
.el-table .el-table__cell {
|
|
padding: 0;
|
|
}
|
|
.el-date-editor {
|
|
--el-date-editor-width: 100px;
|
|
}
|
|
.el-select {
|
|
.el-input {
|
|
height: 28px;
|
|
}
|
|
.el-select-tags-wrapper.has-prefix{
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
}
|
|
.column-dialog > div {
|
|
width: 100%;
|
|
}
|
|
.column-dialog .el-table {
|
|
flex: 1;
|
|
}
|
|
|
|
.common-seach-wrap .dialogo-form-item .el-form-item {
|
|
width: 100%;
|
|
margin-top: 5px;
|
|
}
|
|
/* 隐藏所有表单校验提示 */
|
|
.el-form-item__error{
|
|
display: none;
|
|
}
|
|
/* 关闭审核按钮弧度 */
|
|
.el-button.is-round{
|
|
border-radius: 3px;
|
|
} |