-
Notifications
You must be signed in to change notification settings - Fork 1
/
breadcrumb.html
71 lines (57 loc) · 5.2 KB
/
breadcrumb.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<link rel="import" href="_loader.html" />
</head>
<body>
<template>
<style type="text/css">/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:14px;line-height:1.5;color:#24292e;background-color:#fff}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress,sub,sup{vertical-align:baseline}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects;color:#0366d6;text-decoration:none}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline dotted}b,strong{font-weight:600}dfn{font-style:italic}h1{margin:.67em 0}mark{background-color:#ff0;color:#000}small{font-size:90%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}kbd,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}*{box-sizing:border-box}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a:hover{text-decoration:underline}.rule,hr{height:0;margin:15px 0;overflow:hidden;background:0 0;border:0;border-bottom:1px solid #dfe2e5}.rule::after,.rule::before,hr::after,hr::before{display:table;content:""}.rule::after,hr::after{clear:both}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}button{cursor:pointer}h1,h2,h3,h4,h5,h6,p{margin-top:0;margin-bottom:0}h1,h2,h3,h4,h5,h6{font-size:32px;font-weight:600}h2,h3,h4,h5,h6{font-size:24px}h3,h4,h5,h6{font-size:20px}h4,h5,h6{font-size:16px}h5,h6{font-size:14px}h6{font-size:12px}p{margin-bottom:10px}blockquote{margin:0}ol,ul{padding-left:0}ol ol,ul ol{list-style-type:lower-roman}ol ol ol,ol ul ol,ul ol ol,ul ul ol{list-style-type:lower-alpha}dd{margin-left:0}code,pre,tt{font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px}ol,pre,ul{margin-top:0;margin-bottom:0}.octicon{vertical-align:text-bottom}</style>
<style type="text/css">.breadcrumb-item{display:inline-block;margin-left:-4px;white-space:nowrap;list-style:none}.breadcrumb-item::after{padding-right:.5em;padding-left:.5em;color:#e1e4e8;content:"/"}.breadcrumb-item-selected::after{content:none}</style>
<style type="text/css">
nav ol:first-child .breadcrumb-item {
margin-left: 0;
}
nav ol:last-child .breadcrumb-item {
&::after {
content: none;
}
}
</style>
</template>
<script>
(function() {
githubPrimer.registerElement('primer-breadcrumb', {
create: function (ownerDocument, document) {
var nav = document.createElement('nav');
var ol = document.createElement('ol');
nav.appendChild(ol);
if (this.hasAttribute('aria-label')) {
nav.setAttribute('aria-label', this.getAttribute('aria-label'));
}
children = Array.from(this.children);
children.forEach((child, i) => {
var li = document.createElement('li');
li.classList.add('breadcrumb-item');
if (child.hasAttribute('small')) {
li.classList.add('text-small');
}
if (child.hasAttribute('gray')) {
li.classList.add('text-gray');
}
if (i === children.length-1) {
li.classList.add('breadcrumb-item-selected');
li.setAttribute('aria-current', 'page');
}
li.innerHTML = child.innerHTML;
ol.appendChild(li);
});
var shadowRoot = this.attachShadow({ mode: 'open' });
shadowRoot.appendChild(nav);
return shadowRoot;
}
});
})();
</script>
</body>
</html>