Improves CSS in installer

Correct alignment of radio options
Fixes design-problem with chrome
This commit is contained in:
Michael Rosenberger
2018-11-23 14:34:11 +01:00
parent b9e4adc634
commit 32b5bef221
2 changed files with 6 additions and 1 deletions

View File

@@ -121,6 +121,10 @@ p {
padding:0;
}
.installsec fieldset p, .installsec fieldset h3{
clear: both;
}
.installsec legend {
display:none;
}
@@ -485,6 +489,7 @@ input[type="checkbox"] {
}
input[type="radio"] {
vertical-align: middle;
margin: 0 10px 0 10px;
height:22px;
}

View File

@@ -1,4 +1,4 @@
<p>
<label for="{$fieldname}" class="install-block {$style}">{$fieldlabel}:</label>&nbsp;
<label for="{$fieldname}" class="install-block {$style}">{$fieldlabel}:</label>
<input type="{$type}" name="{$fieldname}" id="{$fieldname}" value="{$fieldvalue}" {$required} />
</p>