fixed style of inputs on release edit page (whoops!)

This commit is contained in:
ari melody 2025-01-24 01:04:57 +00:00
parent e004491b55
commit 9a27dbdc37
Signed by: ari
GPG key ID: CF99829C92678188
3 changed files with 15 additions and 7 deletions

View file

@ -206,13 +206,13 @@ form {
width: 100%; width: 100%;
display: block; display: block;
} }
label { form label {
width: 100%; width: 100%;
margin: 1rem 0 .5rem 0; margin: 1rem 0 .5rem 0;
display: block; display: block;
color: #10101080; color: #10101080;
} }
input { form input {
margin: .5rem 0; margin: .5rem 0;
padding: .3rem .5rem; padding: .3rem .5rem;
display: block; display: block;

View file

@ -5,10 +5,11 @@ div.card {
} }
label { label {
width: 100%; width: auto;
margin: 1rem 0 .5rem 0; margin: 0;
display: block; display: flex;
color: #10101080; align-items: center;
color: inherit;
} }
input { input {
width: min(20rem, calc(100% - 1rem)); width: min(20rem, calc(100% - 1rem));

View file

@ -228,12 +228,14 @@ dialog div.dialog-actions {
} }
#editcredits .credit .credit-info .credit-attribute label { #editcredits .credit .credit-info .credit-attribute label {
width: auto;
margin: 0;
display: flex; display: flex;
align-items: center; align-items: center;
} }
#editcredits .credit .credit-info .credit-attribute input[type="text"] { #editcredits .credit .credit-info .credit-attribute input[type="text"] {
margin-left: .25em; margin: 0 0 0 .25em;
padding: .2em .4em; padding: .2em .4em;
flex-grow: 1; flex-grow: 1;
font-family: inherit; font-family: inherit;
@ -241,6 +243,9 @@ dialog div.dialog-actions {
border-radius: 4px; border-radius: 4px;
color: inherit; color: inherit;
} }
#editcredits .credit .credit-info .credit-attribute input[type="checkbox"] {
margin: 0 .3em;
}
#editcredits .credit .artist-name { #editcredits .credit .artist-name {
font-weight: bold; font-weight: bold;
@ -369,8 +374,10 @@ dialog div.dialog-actions {
#editlinks td input[type="text"] { #editlinks td input[type="text"] {
width: calc(100% - .6em); width: calc(100% - .6em);
height: 100%; height: 100%;
margin: 0;
padding: 0 .3em; padding: 0 .3em;
border: none; border: none;
border-radius: 0;
outline: none; outline: none;
cursor: pointer; cursor: pointer;
background: none; background: none;