mirror of
https://github.com/Kuingsmile/PicList.git
synced 2026-05-11 18:10:32 +08:00
91 lines
2.1 KiB
CSS
91 lines
2.1 KiB
CSS
#config-list-view {
|
|
position: absolute;
|
|
min-height: 100%;
|
|
left: 162px;
|
|
right: 0;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
padding-bottom: 50px;
|
|
box-sizing: border-box;
|
|
}
|
|
#config-list-view .config-list {
|
|
flex-wrap: wrap;
|
|
width: 98%;
|
|
}
|
|
#config-list-view .config-list .config-item {
|
|
height: 85px;
|
|
margin-bottom: 20px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
background: rgba(130,130,130,0.2);
|
|
border: 1px solid transparent;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);
|
|
position: relative;
|
|
}
|
|
#config-list-view .config-list .config-item .config-name {
|
|
color: #eee;
|
|
font-size: 16px;
|
|
}
|
|
#config-list-view .config-list .config-item .config-update-time {
|
|
color: #aaa;
|
|
font-size: 14px;
|
|
margin-top: 10px;
|
|
}
|
|
#config-list-view .config-list .config-item .default-text {
|
|
color: #67c23a;
|
|
font-size: 12px;
|
|
margin-top: 5px;
|
|
}
|
|
#config-list-view .config-list .config-item .operation-container {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 8px;
|
|
left: 0;
|
|
font-size: 18pxc;
|
|
word-break: break-all;
|
|
display: flex;
|
|
align-items: center;
|
|
color: #eee;
|
|
}
|
|
#config-list-view .config-list .config-item .operation-container .el-icon-edit {
|
|
right: 20px;
|
|
position: absolute;
|
|
top: 2px;
|
|
margin-right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
#config-list-view .config-list .config-item .operation-container .el-icon-delete {
|
|
position: absolute;
|
|
top: 2px;
|
|
margin-right: 10px;
|
|
right: 0;
|
|
cursor: pointer;
|
|
}
|
|
#config-list-view .config-list .config-item .operation-container .el-icon-edit {
|
|
margin-right: 10px;
|
|
}
|
|
#config-list-view .config-list .config-item .operation-container .disabled {
|
|
cursor: not-allowed;
|
|
color: #aaa;
|
|
}
|
|
#config-list-view .config-list .config-item-add {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #eee;
|
|
font-size: 28px;
|
|
}
|
|
#config-list-view .config-list .selected {
|
|
border: 1px solid #409eff;
|
|
}
|
|
#config-list-view .set-default-container {
|
|
position: absolute;
|
|
bottom: 10px;
|
|
width: 100%;
|
|
}
|
|
#config-list-view .set-default-container .set-default-btn {
|
|
width: 250px;
|
|
}
|