webos/web/apps/album/css/style.css
2024-02-28 17:21:32 +08:00

68 lines
1.1 KiB
CSS

.item{
padding:5px;
}
.item-com{
background-color: #ffffff;
border: 1px solid #e6e6e6;
cursor: pointer;
}
.item-title {
text-align: center;
font-size: 14px;
color: #444;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.item-files-icon{
width: 0px;
height: 0px;
top: -50px;
left: 10px;
position: relative;
color: #fff;
}
.image{
position: relative;
width: 100%;
height: 0px;
padding-top: 100%;
}
.image img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.el-dialog__header{
height: 20px;
padding: 5px;
}
.el-dialog__headerbtn{
top: 2px;
width: 30px;
height: 30px;
}
.arrow .el-icon{
text-align: center;
margin-top: 10px;
cursor: pointer;
margin-left: 10px;
}
.item-remove-icon{
width: 20px;
line-height: 20px;
display: inline-block;
float: right;
}
html.dark .item-title{
color: #ffffff;
}
html.dark .item-com{
background-color: #1c1c1c;
border: 1px solid #565656;
}