mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[mod] hide hidden fields
This commit is contained in:
parent
ab6ad1e235
commit
8e4fcd24d6
2 changed files with 5 additions and 1 deletions
|
@ -617,6 +617,10 @@ input[type='radio'].nice-radio {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.input-hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.alert-debug {
|
.alert-debug {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
<div class="panel-heading"><h3 class="panel-title">{{name}} <small>{{help}}</small></h3></div>
|
<div class="panel-heading"><h3 class="panel-title">{{name}} <small>{{help}}</small></h3></div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
{{#options}}
|
{{#options}}
|
||||||
<div class="form-group">
|
<div class="form-group input-{{inputType}}">
|
||||||
<label for="{{name}}" class="col-sm-2 control-label">{{label}}</label>
|
<label for="{{name}}" class="col-sm-2 control-label">{{label}}</label>
|
||||||
|
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-10">
|
||||||
|
|
Loading…
Reference in a new issue