jekyll-theme-centos 0.5.2 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/page/code-header.html +4 -0
- data/_layouts/default.html +1 -0
- data/_sass/centos/_main.scss +26 -23
- data/_sass/centos/_mixins.scss +1 -0
- data/_sass/centos/mixins/_code-header.scss +42 -0
- data/_sass/centos/mixins/_content.scss +2 -0
- data/assets/js/copycode.js +18 -0
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 389ef72e2745a5d22f12569a4b37a6da193bceac1b6ef5a264becf9a068541df
|
4
|
+
data.tar.gz: 26474f02d482dddcd0754356b08fe927d2787d2af3dff52444e5c5fd19bf1025
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5f2a4a3a0fdfee2b5249a782b9cc2def54d72cec4ba563f21c9838a18d970f09747705efe7dea68629bc81b91691e9d684a1a1d0a2d9995b29c006fe41fe7455
|
7
|
+
data.tar.gz: 120abf5ca5f499b1a2d4c2847139c29ecd26ae76f733e5cc9f1a35dc647dbec0690227d0ed6ae1bb43e98ad9e4936ea31c21536cdb19f012aa854bdb697c7c7d
|
data/_layouts/default.html
CHANGED
data/_sass/centos/_main.scss
CHANGED
@@ -10,6 +10,7 @@
|
|
10
10
|
&__distributions {
|
11
11
|
.btn {
|
12
12
|
@extend .btn-primary;
|
13
|
+
width: 100%;
|
13
14
|
margin-right: 15px;
|
14
15
|
margin-bottom: $paragraph-margin-bottom;
|
15
16
|
}
|
@@ -115,32 +116,34 @@
|
|
115
116
|
}
|
116
117
|
|
117
118
|
.search {
|
118
|
-
|
119
|
+
&__content {
|
120
|
+
@extend .col-sm-12;
|
121
|
+
@include content;
|
119
122
|
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
123
|
+
.ais-search-box {
|
124
|
+
max-width: 100%;
|
125
|
+
margin-bottom: 15px;
|
126
|
+
}
|
127
|
+
.ais-hits {
|
128
|
+
@include link-list;
|
129
|
+
}
|
130
|
+
.ais-pagination {
|
131
|
+
li {
|
132
|
+
text-decoration: none;
|
133
|
+
}
|
134
|
+
}
|
135
|
+
.ais-Highlight {
|
136
|
+
font-weight: bold;
|
137
|
+
font-style: normal;
|
138
|
+
}
|
139
|
+
.post-breadcrumbs {
|
140
|
+
display: block;
|
141
|
+
font-size: small;
|
142
|
+
}
|
143
|
+
.post-snippet img {
|
144
|
+
display: none;
|
130
145
|
}
|
131
146
|
}
|
132
|
-
.ais-Highlight {
|
133
|
-
font-weight: bold;
|
134
|
-
font-style: normal;
|
135
|
-
}
|
136
|
-
.post-breadcrumbs {
|
137
|
-
display: block;
|
138
|
-
font-size: small;
|
139
|
-
}
|
140
|
-
.post-snippet img {
|
141
|
-
display: none;
|
142
|
-
}
|
143
|
-
|
144
147
|
}
|
145
148
|
|
146
149
|
.download {
|
data/_sass/centos/_mixins.scss
CHANGED
@@ -0,0 +1,42 @@
|
|
1
|
+
@mixin code-header {
|
2
|
+
|
3
|
+
.code-header {
|
4
|
+
display: flex;
|
5
|
+
justify-content: flex-end;
|
6
|
+
background: $black;
|
7
|
+
}
|
8
|
+
|
9
|
+
.copy-code-button {
|
10
|
+
@extend .btn, .btn-dark, .shadow-none;
|
11
|
+
border-radius: 0px;
|
12
|
+
display: grid;
|
13
|
+
grid-auto-flow: column;
|
14
|
+
align-items: center;
|
15
|
+
grid-column-gap: 4px;
|
16
|
+
border: none;
|
17
|
+
cursor: pointer;
|
18
|
+
background-color: $black;
|
19
|
+
font-size: small;
|
20
|
+
|
21
|
+
&:before {
|
22
|
+
@extend .fas;
|
23
|
+
content: fa-content($fa-var-clipboard);
|
24
|
+
}
|
25
|
+
&:after {
|
26
|
+
content: "Copy";
|
27
|
+
display: block;
|
28
|
+
}
|
29
|
+
|
30
|
+
// This class will be toggled via JavaScript
|
31
|
+
&.copied {
|
32
|
+
&:before {
|
33
|
+
@extend .fas;
|
34
|
+
content: fa-content($fa-var-check);
|
35
|
+
color: $green;
|
36
|
+
}
|
37
|
+
&:after {
|
38
|
+
content: "Copied!";
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
@@ -4,6 +4,7 @@
|
|
4
4
|
padding: 2.75rem;
|
5
5
|
margin-top: -120px;
|
6
6
|
min-height: 430px;
|
7
|
+
box-shadow: 0px -2px 3px 0px rgba(50, 50, 50, 0.25);
|
7
8
|
|
8
9
|
h1, h2, h3, h4, h5, h6 {
|
9
10
|
scroll-margin-top: $scroll-margin-top + 2.5;
|
@@ -69,4 +70,5 @@
|
|
69
70
|
margin-bottom: $line-height-base * 1em;
|
70
71
|
}
|
71
72
|
|
73
|
+
@include code-header;
|
72
74
|
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// Thanks Aleksandr
|
2
|
+
// https://www.aleksandrhovhannisyan.com/blog/how-to-add-a-copy-to-clipboard-button-to-your-jekyll-blog/
|
3
|
+
const codeBlocks = document.querySelectorAll(".code-header + .highlighter-rouge");
|
4
|
+
const copyCodeButtons = document.querySelectorAll(".copy-code-button");
|
5
|
+
|
6
|
+
copyCodeButtons.forEach((copyCodeButton, index) => {
|
7
|
+
const code = codeBlocks[index].innerText;
|
8
|
+
|
9
|
+
copyCodeButton.addEventListener("click", () => {
|
10
|
+
window.navigator.clipboard.writeText(code);
|
11
|
+
copyCodeButton.classList.add("copied");
|
12
|
+
|
13
|
+
setTimeout(() => {
|
14
|
+
copyCodeButton.classList.remove("copied");
|
15
|
+
copyCodeButton.blur();
|
16
|
+
}, 2000);
|
17
|
+
});
|
18
|
+
});
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-centos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alain Reguera Delgado
|
@@ -97,6 +97,7 @@ files:
|
|
97
97
|
- _includes/page/alert-info.html
|
98
98
|
- _includes/page/alert-success.html
|
99
99
|
- _includes/page/alert-warning.html
|
100
|
+
- _includes/page/code-header.html
|
100
101
|
- _includes/page/figure.html
|
101
102
|
- _includes/page/video.html
|
102
103
|
- _includes/post-nav-explorer.html
|
@@ -217,6 +218,7 @@ files:
|
|
217
218
|
- _sass/centos/centos.scss
|
218
219
|
- _sass/centos/fonts/_montserrat.scss
|
219
220
|
- _sass/centos/mixins/_aside-nav.scss
|
221
|
+
- _sass/centos/mixins/_code-header.scss
|
220
222
|
- _sass/centos/mixins/_content-nav.scss
|
221
223
|
- _sass/centos/mixins/_content.scss
|
222
224
|
- _sass/centos/mixins/_link-list.scss
|
@@ -335,6 +337,7 @@ files:
|
|
335
337
|
- assets/img/post.png
|
336
338
|
- assets/js/bootstrap.min.js
|
337
339
|
- assets/js/bootstrap.min.js.map
|
340
|
+
- assets/js/copycode.js
|
338
341
|
- assets/js/dataTables.bootstrap4.min.js
|
339
342
|
- assets/js/instantsearch.min.js
|
340
343
|
- assets/js/jquery.dataTables.min.js
|