This commit is contained in:
Dennis Eichhorn 2017-10-03 17:33:45 +02:00
parent 229629bda3
commit 7255dc28eb
3 changed files with 9 additions and 7 deletions

View File

@ -33,10 +33,6 @@ form {
background: #bebebe; background: #bebebe;
} }
table.layout {
table-layout: fixed;
}
.layout td+td { .layout td+td {
padding-left: 5px; padding-left: 5px;
} }

View File

@ -21,11 +21,13 @@ input[type="email"],
input[type="date"], input[type="date"],
input[type="number"], input[type="number"],
input[type="datetime-local"] { input[type="datetime-local"] {
box-sizing: border-box;
color: #454545; color: #454545;
background: #fff; background: #fff;
width: 100%; width: 100%;
height: 2rem; height: 2rem;
min-width: 70px; min-width: 70px;
max-width: 100%;
padding: 7px; padding: 7px;
font-size: 0.9rem; font-size: 0.9rem;
border: solid 1px #dcdcdc; border: solid 1px #dcdcdc;
@ -49,8 +51,10 @@ option {
input[type="file"] { input[type="file"] {
border: solid 1px #dcdcdc; border: solid 1px #dcdcdc;
width: 100%; width: 100%;
max-width: 100%;
color: #454545; color: #454545;
padding: 10px; padding: 10px;
box-sizing: border-box;
} }
input[placeholder], textarea { input[placeholder], textarea {

View File

@ -3487,8 +3487,6 @@ form .inputPrefix {
line-height: 2em; line-height: 2em;
height: 100%; height: 100%;
background: #bebebe; } background: #bebebe; }
form table.layout {
table-layout: fixed; }
form .layout td + td { form .layout td + td {
padding-left: 5px; } padding-left: 5px; }
form .list { form .list {
@ -3640,11 +3638,13 @@ input[type="email"],
input[type="date"], input[type="date"],
input[type="number"], input[type="number"],
input[type="datetime-local"] { input[type="datetime-local"] {
box-sizing: border-box;
color: #454545; color: #454545;
background: #fff; background: #fff;
width: 100%; width: 100%;
height: 2rem; height: 2rem;
min-width: 70px; min-width: 70px;
max-width: 100%;
padding: 7px; padding: 7px;
font-size: 0.9rem; font-size: 0.9rem;
border: solid 1px #dcdcdc; border: solid 1px #dcdcdc;
@ -3674,8 +3674,10 @@ option {
input[type="file"] { input[type="file"] {
border: solid 1px #dcdcdc; border: solid 1px #dcdcdc;
width: 100%; width: 100%;
max-width: 100%;
color: #454545; color: #454545;
padding: 10px; } padding: 10px;
box-sizing: border-box; }
input[placeholder], textarea { input[placeholder], textarea {
font-family: 'FontAwesome', serif; } font-family: 'FontAwesome', serif; }