PlayerView: add MenuOverlay

This commit is contained in:
He4eT 2023-05-29 00:07:02 +03:00 committed by Alexey
commit 2b344f7cd9
4 changed files with 46 additions and 41 deletions

View file

@ -93,12 +93,47 @@ button {
border: 2px solid var(--main-color);
background-color: var(--bg-color);
color: var(--main-color);
padding: var(--inner-padding);
padding: var(--inner-padding) calc(4 * var(--inner-padding));
font-family: inherit;
font-size: inherit;
cursor: pointer;
}
input,
select {
box-sizing: border-box;
padding: 4px 8px;
color: var(--main-color);
background-color: var(--bg-color);
border: 2px solid var(--main-color);
font: inherit;
}
select {
cursor: pointer;
appearance: none;
-webkit-appearance: none;
border-radius: 0;
width: 200px;
}
label {
display: inline-block;
width: 100%;
max-width: 400px;
}
label input {
width: 100%;
}
input[type='file'] {
position: relative;
font-size: 0;
text-indent: -100%;
cursor: pointer;
}
/* */
.status {