The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

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

refs #19423 [finc] improve form fields search favorites new list

* set fieldset legend into template
* styling fieldset legend
* move legend position
parent 52e38f17
No related merge requests found
......@@ -380,6 +380,18 @@ fieldset {
}
}
.form-edit-list {
fieldset {
border: 0;
float: none;
padding: 0;
}
legend {
font-size: $font-size-base;
margin-left: -14px;
}
}
//// Legend elements
// Limit to etc in Advanced search
legend {
......
......@@ -31,17 +31,19 @@
<input type="hidden" name="public" value="0" />
<?php else: ?>
<div class="form-group">
<label class="control-label"><?=$this->transEsc('Access') ?></label>
<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>
</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>
</div>
<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>
</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>
</div>
</fieldset>
</div>
<?php endif; ?>
<div class="form-group">
......
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