Mercurial > libervia-templates
diff sat_templates/templates/default/input/navigation.html @ 172:4a03d0a6839b
css (styles): various styles improvments:
- work on list
- new paired-slides class
- box-medium is a larger than before
- use --text modified when size is 1em
- added several list modifiers classes
- added several box modifiers
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Jan 2019 20:22:18 +0100 |
parents | 6f05d4bdc58e |
children |
line wrap: on
line diff
--- a/sat_templates/templates/default/input/navigation.html Fri Jan 25 11:28:41 2019 +0100 +++ b/sat_templates/templates/default/input/navigation.html Sat Jan 26 20:22:18 2019 +0100 @@ -1,10 +1,10 @@ {% macro prev_next(prev_label=_("newer"), next_label=_("older")) %} <nav class="prev_next box box--large box--zero"> - <ul> + <ul class="list list--inline"> {% if previous_page_url is defined %} <li class="prev_next__previous"> <a href="{{previous_page_url}}"> - {{ icon('angle-double-left', cls='icon--small') }} + {{ icon('angle-double-left', cls='icon--text') }} {{prev_label}} </a> </li> @@ -13,7 +13,7 @@ <li class="prev_next__next"> <a href="{{next_page_url}}"> {{next_label}} - {{ icon('angle-double-right', cls='icon--small') }} + {{ icon('angle-double-right', cls='icon--text') }} </a> </li> {% endif %}