Skip to content
Snippets Groups Projects
Commit 9d874ce4 authored by Gregor Gawol's avatar Gregor Gawol Committed by Robert Lange
Browse files

refs #19837 [fid_bbi] improve form fields search favorites new list

parent 322c9ad1
No related merge requests found
......@@ -157,3 +157,17 @@
@extend label;
flex: 1;
}
.form-edit-list {
fieldset {
border: 0;
float: none;
padding: 0;
width: 100%;
}
legend {
color: $black;
font-size: inherit;
width: 30%;
}
}
......@@ -55,35 +55,20 @@ $this->headTitle($this->translate($pageTitle));
<input type="hidden" name="public" value="0">
<?php else: ?>
<div class="form-group">
<div class="form-label" id="access-label">
<?=$this->translate('Access')?>
</div>
<div class="form-inputs" aria-labelledby="access-label">
<p>
<input
id="list_public_1"
type="radio"
name="public"
value="1"
<?=$this->list->isPublic() ? 'checked' : ''?>
>
<label for="list_public_1">
<?=$this->translate('Public')?>
<?php /* refs #19837 improve favorite edit list - GG */ ?>
<fieldset>
<legend><?=$this->transEsc('Access') ?></legend>
<div class="radio inline">
<label>
<input id="list_public_1" type="radio" name="public" value="1"<?php if ($this->list->isPublic()): ?> checked="checked"<?php endif; ?>/> <?=$this->transEsc('Public') ?>
</label>
</p>
<p>
<input
id="list_public_0"
type="radio"
name="public"
value="0"
<?=!$this->list->isPublic() ? 'checked' : ''?>
>
<label for="list_public_0">
<?=$this->translate('Private')?>
</div>
<div class="radio inline">
<label>
<input id="list_public_0" type="radio" name="public" value="0"<?php if (!$this->list->isPublic()): ?> checked="checked"<?php endif; ?>/> <?=$this->transEsc('Private') ?>
</label>
</p>
</div>
</div>
</fieldset>
</div>
<?php endif; ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment