-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Tabs demo in web is now same as demo-react in web and web-twig
- Loading branch information
1 parent
fa33859
commit 8e8f78e
Showing
1 changed file
with
51 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,58 @@ | ||
{{#> layout/plain }} | ||
|
||
<ul class="Tabs" role="tablist"> | ||
<li class="Tabs__item"> | ||
<button | ||
class="Tabs__link is-selected" | ||
role="tab" | ||
type="button" | ||
aria-selected="true" | ||
id="pane1-tab" | ||
data-spirit-toggle="tabs" | ||
data-spirit-target="#pane1" | ||
aria-controls="pane1" | ||
> | ||
Item 1 | ||
</button> | ||
</li> | ||
<li class="Tabs__item"> | ||
<button | ||
class="Tabs__link" | ||
role="tab" | ||
type="button" | ||
aria-selected="false" | ||
id="pane2-tab" | ||
data-spirit-toggle="tabs" | ||
data-spirit-target="#pane2" | ||
aria-controls="pane2" | ||
> | ||
Item 2 | ||
</button> | ||
</li> | ||
<li class="Tabs__item"> | ||
<a href="https://www.example.com" class="Tabs__link">Item Link</a> | ||
</li> | ||
<li class="Tabs__item d-none d-desktop-block"> | ||
<a href="https://www.example.com" class="Tabs__link">Item Link, Desktop Only</a> | ||
</li> | ||
</ul> | ||
<section class="docs-Section"> | ||
|
||
<h2 class="docs-Heading">Default</h2> | ||
|
||
<div class="docs-Stack docs-Stack--stretch"> | ||
|
||
<div id="pane1" class="TabsPane is-selected" role="tabpanel" aria-labelledby="pane1-tab"> | ||
Pane 1 content | ||
</div> | ||
<ul class="Tabs" role="tablist"> | ||
<li class="Tabs__item"> | ||
<button | ||
class="Tabs__link is-selected" | ||
role="tab" | ||
type="button" | ||
aria-selected="true" | ||
id="pane1-tab" | ||
data-spirit-toggle="tabs" | ||
data-spirit-target="#pane1" | ||
aria-controls="pane1" | ||
> | ||
Item 1 | ||
</button> | ||
</li> | ||
<li class="Tabs__item"> | ||
<button | ||
class="Tabs__link" | ||
role="tab" | ||
type="button" | ||
aria-selected="false" | ||
id="pane2-tab" | ||
data-spirit-toggle="tabs" | ||
data-spirit-target="#pane2" | ||
aria-controls="pane2" | ||
> | ||
Item 2 | ||
</button> | ||
</li> | ||
<li class="Tabs__item"> | ||
<a href="https://www.example.com" class="Tabs__link">Item link</a> | ||
</li> | ||
<li class="Tabs__item d-none d-desktop-block"> | ||
<a href="https://www.example.com" class="Tabs__link">Item link, desktop only</a> | ||
</li> | ||
</ul> | ||
|
||
<div id="pane1" class="TabsPane is-selected" role="tabpanel" aria-labelledby="pane1-tab"> | ||
Pane 1 content | ||
</div> | ||
|
||
<div id="pane2" class="TabsPane" role="tabpanel" aria-labelledby="pane2-tab"> | ||
Pane 2 content | ||
</div> | ||
|
||
<div id="pane2" class="TabsPane" role="tabpanel" aria-labelledby="pane2-tab"> | ||
Pane 2 content | ||
</div> | ||
|
||
</section> | ||
|
||
{{/layout/plain }} |