Skip to content
Snippets Groups Projects
Commit 27997f89 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-4790: updating tabs to use links and active trail

parent 5d656f8d
No related branches found
No related tags found
1 merge request!54Feature/istwcms 4790 ebremner tabs links
...@@ -6949,6 +6949,9 @@ html:not(.js) .uw-tabcontent[role="tabpanel"][hidden] { ...@@ -6949,6 +6949,9 @@ html:not(.js) .uw-tabcontent[role="tabpanel"][hidden] {
.block-local-tasks-block nav nav ul li a { .block-local-tasks-block nav nav ul li a {
font-family: Typ1451-Medium,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen-Sans", Ubuntu, Cantarell, "Fira Sans", Droid Sans, sans-serif; } font-family: Typ1451-Medium,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Oxygen-Sans", Ubuntu, Cantarell, "Fira Sans", Droid Sans, sans-serif; }
.uw-tablinks.active {
border-bottom: 0.4rem solid #4e4e4e; }
.tag-list { .tag-list {
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
.uw-tabs{ .uw-tabs{
margin:gesso-spacing(sm) auto; margin:gesso-spacing(sm) auto;
width: 100%; width: 100%;
.hide-js{ .hide-js{
display:none; display:none;
html:not(.js) &{ html:not(.js) &{
...@@ -14,19 +15,22 @@ ...@@ -14,19 +15,22 @@
} }
} }
} }
//buttons wrapper
//buttons wrapper
.uw-tab { .uw-tab {
display:flex; display:flex;
html:not(.js) &{ html:not(.js) &{
display:none; display:none;
} }
} }
//button
// button
.uw-tablinks { .uw-tablinks {
border-bottom: 0.4rem solid #fff; border-bottom: 0.4rem solid #fff;
margin:0 0 0 0.15rem; margin:0 0 0 0.15rem;
max-width: inherit; max-width: inherit;
&[aria-selected="true"] { &[aria-selected="true"] {
background: $button-background-color-hover; background: $button-background-color-hover;
border-bottom: 0.4rem solid $button-text-color-hover; border-bottom: 0.4rem solid $button-text-color-hover;
...@@ -35,6 +39,7 @@ ...@@ -35,6 +39,7 @@
border-bottom: 0.4rem solid #ddd; border-bottom: 0.4rem solid #ddd;
} }
} }
&:hover{ &:hover{
border-bottom: 0.4rem solid #fff; border-bottom: 0.4rem solid #fff;
} }
...@@ -48,32 +53,39 @@ ...@@ -48,32 +53,39 @@
&[hidden] { &[hidden] {
display:none; display:none;
} }
} }
html:not(.js) .uw-tabcontent[role="tabpanel"][hidden]{
html:not(.js) .uw-tabcontent[role="tabpanel"][hidden]{
display: flex; display: flex;
} }
.uw-tabcontent[role="tabpanel"] .card{ .uw-tabcontent[role="tabpanel"] .card{
width:100%; width:100%;
@include small{ @include small{
flex-grow: 1; flex-grow: 1;
width: 45%; width: 45%;
} }
@include large{ @include large{
width: 32%; width: 32%;
} }
} }
// lineup the top of the date with the title in blog teaser // lineup the top of the date with the title in blog teaser
.uw-tabcontent[role="tabpanel"] .card.teaser--blog .card__title{ .uw-tabcontent[role="tabpanel"] .card.teaser--blog .card__title{
margin-top:0; margin-top:0;
} }
.block-local-tasks-block{ .block-local-tasks-block{
nav nav ul li a { nav nav ul li a {
font-family: gesso-font-family(systemmedium); font-family: gesso-font-family(systemmedium);
} }
} }
.uw-tablinks {
&.active {
border-bottom: 0.4rem solid #4e4e4e;
}
}
TABS
<div class="uw-tabs"> <div class="uw-tabs">
<div class="uw-tab" role="tablist" aria-label="Multi-tab-list"> <div class="uw-tab" role="tablist" aria-label="Multi-tab-list">
{% for type in content_list %} {% for type in content_list %}
{% if tab_type == "link" %} {% if tab_type == "link" %}
<a href="{{ type.url }}" class="uw-tablinks {{ button_modifier_classes }} is-active-trail">{{ type.text }}</a> <a href="{{ type.url }}" class="uw-tablinks {{ button_modifier_classes }} {% if type.active %}active{% endif %} %}">{{ type.text }}</a>
{% else %} {% else %}
<button role="tab" class="uw-tablinks {{ button_modifier_classes }} " {% if loop.index == 1 %} aria-selected="true" {% else %} aria-selected="false" {% endif %} aria-controls="{{ type }}" id="tab-{{ loop.index }}" tabindex="0">{{ type }}</button> <button role="tab" class="uw-tablinks {{ button_modifier_classes }} " {% if loop.index == 1 %} aria-selected="true" {% else %} aria-selected="false" {% endif %} aria-controls="{{ type }}" id="tab-{{ loop.index }}" tabindex="0">{{ type }}</button>
{% endif %} {% endif %}
......
--- ---
modifier_classes: '' modifier_classes: ''
is_demo: true
content_list: content_list:
- Tab1 - Tab1
- Tab2 - Tab2
......
...@@ -2,11 +2,6 @@ ...@@ -2,11 +2,6 @@
button button--large {{ modifier_classes }} button button--large {{ modifier_classes }}
{%- endset %} {%- endset %}
{% for cl in content_list %}
{{ cl.url }} {{ cl.text }} <br />
{% endfor %}
LINK
{% include "@components/tabs/_tabs.twig" with { {% include "@components/tabs/_tabs.twig" with {
tab_type: 'link', tab_type: 'link',
content_list: content_list, content_list: content_list,
......
--- ---
modifier_classes: '' modifier_classes: ''
is_demo: true
content_list: content_list:
- -
url: 'https://google.ca' url: 'https://google.ca'
...@@ -8,3 +7,10 @@ content_list: ...@@ -8,3 +7,10 @@ content_list:
- -
url: 'https://google.ca' url: 'https://google.ca'
text: 'Link2' text: 'Link2'
active: 1
-
url: 'https://google.ca'
text: 'Link3'
-
url: 'https://google.ca'
text: 'Link4'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment