Skip to content
This repository has been archived by the owner on Sep 16, 2022. It is now read-only.

Commit

Permalink
Align nodes (list-items) with the top part of the item
Browse files Browse the repository at this point in the history
  • Loading branch information
dvidotti committed Feb 16, 2020
1 parent 50c1015 commit ddb5184
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/device_registry/templates/actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h1 class="mb-0" id="wott-popover-title">All Nodes</h1>
</div>
<hr class="popover-title-line">
</div>
<div class="wott-popover-body w-100">
<div class="wott-popover-body d-flex flex-wrap w-100">
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions backend/device_registry/templates/cve.html
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ <h1 class="mb-0" id="wott-popover-title">TEXT GO HERE</h1>
</div>
<hr class="popover-title-line">
</div>
<div class="wott-popover-body"><!--nodeList include w-100 | instructions include w-auto-->
<div class="wott-popover-body"><!--nodeList include w-100, d-flex and flex-wrap| instructions include w-auto-->
</div>
</div>

Expand Down Expand Up @@ -212,7 +212,7 @@ <h1 class="mb-0" id="wott-popover-title">TEXT GO HERE</h1>
if(!show)
return;
$('.popover-box').toggleClass('wott-scroll-x', box_scroll_x).toggleClass('wott-scroll-y', box_scroll_y);
$('.wott-popover-body').html(html).toggleClass('w-100', body_w100).toggleClass('w-auto', !body_w100);
$('.wott-popover-body').html(html).toggleClass('w-100 d-flex flex-wrap', body_w100).toggleClass('w-auto', !body_w100);
$('#wott-popover-title').text(title);
}

Expand Down

0 comments on commit ddb5184

Please sign in to comment.