issue #2072 Expand and Shrink album description field

This commit is contained in:
Willy "Linty 2023-12-19 17:48:07 +01:00
parent dba18e3735
commit dca43a71bc
6 changed files with 119 additions and 3 deletions

View file

@ -7109,6 +7109,72 @@ color:#FF7B00;
#usr-list-registered:hover #icon-usr-list-registered{
display: block !important;
}
/* Cat modify description modal */
.desc-modal {
display: none;
position: fixed;
z-index: 100;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.desc-modal-content {
position: absolute;
border-radius: 10px;
background-color: white;
margin: auto;
width: 75vw;
height: 75vh;
top: 0;
bottom: 0;
right: 0;
left: 0;
display: grid;
grid-template-rows: min-content auto min-content;
}
.desc-modal-header {
font-size: 22px;
}
.desc-modal-header p {
margin: 35px 0;
}
.desc-modal-body {
margin: 0 110px;
overflow: auto;
}
.desc-modal-body textarea {
box-sizing: border-box;
border: none;
resize: none;
width: 100%;
height: 99%;
background-color: #F3F3F3 !important;
padding: 20px;
}
.desc-modal-footer {
display: flex;
justify-content: end;
margin: 20px 0;
margin-right: 110px;
}
.desc-modal-footer p {
cursor: pointer;
}
.desc-modal-footer span {
margin-right: 5px;
}
@media (max-width: 1450px) {
.promote-text span {