2020-10-25 23:57:50 +08:00
|
|
|
// Image edit modal
|
|
|
|
.modal-file-edit {
|
|
|
|
background: transparent;
|
|
|
|
font-size: $font-size-base;
|
|
|
|
padding: 0 !important;
|
|
|
|
|
|
|
|
.modal-dialog {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-content {
|
|
|
|
border: 0;
|
|
|
|
height: 100%;
|
2023-09-21 18:51:32 +08:00
|
|
|
padding: 0;
|
2020-10-25 23:57:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.modal-header {
|
|
|
|
align-items: center;
|
|
|
|
background: $color-white;
|
|
|
|
display: flex;
|
2023-09-21 18:51:32 +08:00
|
|
|
flex-direction: row;
|
2020-10-25 23:57:50 +08:00
|
|
|
height: 4em;
|
|
|
|
padding: 0 1em;
|
|
|
|
|
|
|
|
.file-name {
|
|
|
|
font-weight: bold;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-body {
|
|
|
|
height: calc(100% - 4em);
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|