Skip to content

Commit 8ed927e

Browse files
committed
Pushing docs assets
1 parent 3840151 commit 8ed927e

File tree

3 files changed

+100
-0
lines changed

3 files changed

+100
-0
lines changed
Lines changed: 31 additions & 0 deletions
Loading

docs/assets/css/custom.css

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/* Copied from https://raw.githubusercontent.com/Ovski4/jekyll-tabs/master/docs/tabs.css */
2+
.tab {
3+
display: flex;
4+
flex-wrap: wrap;
5+
margin-left: -20px;
6+
padding: 0;
7+
list-style: none;
8+
position: relative;
9+
}
10+
11+
.tab > * {
12+
flex: none;
13+
padding-left: 20px;
14+
position: relative;
15+
}
16+
17+
.tab > * > a {
18+
display: block;
19+
text-align: center;
20+
padding: 9px 20px;
21+
color: #999;
22+
border-bottom: 2px solid transparent;
23+
border-bottom-color: transparent;
24+
font-size: 12px;
25+
text-transform: uppercase;
26+
transition: color .1s ease-in-out;
27+
line-height: 20px;
28+
}
29+
30+
.tab > .active > a {
31+
color:#222;
32+
border-color: #1e87f0;
33+
}
34+
35+
.tab > li > a {
36+
text-decoration: none;
37+
cursor: pointer;
38+
}
39+
40+
.tab-content {
41+
padding: 0;
42+
}
43+
44+
.tab-content > li {
45+
display: none;
46+
}
47+
48+
.tab-content > li.active {
49+
display: block;
50+
}
51+
52+
/* Begin MarkLogic modifications. */
53+
/* Override the just-the-docs styles so we don't get bullet points by the tabs. */
54+
.tab > li::before {
55+
content: "" !important;
56+
}
57+
.tab-content > li::before {
58+
content: "" !important;
59+
}
60+
/* End MarkLogic modifications. */

docs/assets/js/tabs.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)