New Styleguide page for "Loading" | |
Introduce CDN links to all images | |
Add Section with index-tiles to branding page | |
New Styleguide page for "Branding" | |
FC | Extend ".wui-bs-alert" with all fruit-color-variantes |
Font-Awesome has been updated to version 5.12.0 | |
Ut | "Utils" has been extended with opacity, heights and colors |
Do you have any design-related questions or suggestions? We'd love to hear from you.
Please contact Wuiman to discuss your ideas.
The sticky header is probably one of the most common examples how and when to use the .wui-inline-list
<div class="wui-inline-list pull-right">
<div class="wui-inline-list__item">
<a href="#" class="wui-btn wui-btn--link">
Cancel
</a>
</div>
<div class="wui-inline-list__item">
<a title="Delete content source" class="wui-btn wui-btn--outline wui-btn--default">
<i class="fa fa-trash"></i>
</a>
</div>
<div class="wui-inline-list__item">
<a class="wui-btn wui-btn--primary">
Primary button
</a>
</div>
<div class="wui-inline-list__item">
<div class="fake-search" style="max-width:250px; position:relative;">
<input class="form-control" placeholder="Search placeholder">
<span style="position:absolute; right:7px; top:4px;">
<span class="fa fa-search" style="color:#888888;"></span>
</span>
</div>
</div>
</div>
The two buttons "previous" and "next" have no gap between each other. The pagination is a button group and counts as one element in itself and is therefore not divided into different wui-inline-list__items.
<div class="wui-inline-list pull-right">
<div class="wui-inline-list__item">
<button class="wui-btn wui-btn--outline wui-btn--primary">Secondary button</button>
</div>
<div class="wui-inline-list__item">
<div class="fake-search" style="max-width:250px; position:relative;">
<input class="form-control" placeholder="Search placeholder">
<span style="position:absolute; right:7px; top:4px;">
<span class="fa fa-search" style="color:#888888;"></span>
</span>
</div>
</div>
<div class="wui-inline-list__item">
<ul class="wui-pagination" role="navigation" aria-label="pagination">
<li class="wui-pagination__item wui-pagination__item--disabled">
<a href="#">
<i class="fa fa-chevron-left" aria-hidden="true"></i>
</a>
</li>
<li class="wui-pagination__item">
<a href="#">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
</div>