diff --git a/themes/finc/scss/compiled.scss b/themes/finc/scss/compiled.scss index 64437ba4f508b92545757f1867a35daf7138f52a..117e5c97bd91f71bed14d91d9a266f3cab92c007 100644 --- a/themes/finc/scss/compiled.scss +++ b/themes/finc/scss/compiled.scss @@ -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 { diff --git a/themes/finc/templates/myresearch/editlist.phtml b/themes/finc/templates/myresearch/editlist.phtml index 364c4bbfdcb32d92f55bd280129b06a8bfe3c24e..7495bb34897099b853bf25dd5d3ce31a43d3d6ac 100644 --- a/themes/finc/templates/myresearch/editlist.phtml +++ b/themes/finc/templates/myresearch/editlist.phtml @@ -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">