Fix video edit page overflow

This commit is contained in:
Chocobozzz 2023-05-25 16:03:29 +02:00
parent 0a1aaf2d11
commit 4958e9e56e
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 5 additions and 24 deletions

View File

@ -4,6 +4,9 @@
input:not([type=submit]) {
@include peertube-input-text(340px);
max-width: 340px;
width: 100%;
display: block;
}

View File

@ -816,31 +816,9 @@ p-tablecheckbox:hover div .p-checkbox-box {
.p-checkbox-box {
&.p-highlight {
border-color: pvar(--mainColor) !important;
color: pvar(--mainBackgroundColor) !important;
background-color: pvar(--mainColor) !important;
}
.p-checkbox-icon {
position: relative;
overflow: visible !important;
&:after {
content: '';
position: absolute;
bottom: -5px;
left: -2px;
width: 5px;
height: 12px;
opacity: 0;
transform: rotate(45deg) scale(0);
border-right: 2px solid pvar(--mainBackgroundColor);
border-bottom: 2px solid pvar(--mainBackgroundColor);
}
&.pi-check:after {
opacity: 1;
transform: rotate(45deg) scale(1);
}
border-color: pvar(--mainColor) !important;
}
}
}