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 897db6b9 authored by Aspectis's avatar Aspectis Committed by Dorian Merz
Browse files

refs #19705 [fid_bbi] style user tags

* fix tags button styles
* remove margin from tags list
** The tags list is rendered even when there are no tags, remove margin to fix gap.
* fix tag list not refreshing
parent a8603e7c
No related merge requests found
.tags {
margin-bottom: g(.5);
//
}
.tags_button {
......
......@@ -59,6 +59,7 @@
@import 'blocks/sr-only';
@import 'blocks/table';
@import 'blocks/tabs';
@import 'blocks/tags';
@import 'blocks/tagline';
@import 'blocks/tooltip';
@import 'blocks/to-top';
......
<!-- fid_bbi: record - taglist -->
<div class="tags<?=$loggedin ? ' -loggedin' : ''?>">
<?php // NOTE: List items are replaced via AJAX, do not change classes .tagList and .loggedin ?>
<div class="tags tagList <?=$loggedin ? 'loggedin' : ''?>">
<?php if (count($tagList) > 0): ?>
<?php foreach ($tagList as $tag): ?>
<div class="tags_item">
......
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