jekyll-theme-centos 0.5.2 → 0.5.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f1bbbe60dfe5485954ba24127364e7672078370e633879245c005d52cf02c7b
4
- data.tar.gz: 7b4e9f6f42b03e136dbdd24c9bcde381876bb075ca2238c13bcea53bc5f28659
3
+ metadata.gz: 389ef72e2745a5d22f12569a4b37a6da193bceac1b6ef5a264becf9a068541df
4
+ data.tar.gz: 26474f02d482dddcd0754356b08fe927d2787d2af3dff52444e5c5fd19bf1025
5
5
  SHA512:
6
- metadata.gz: bef11e25482020a3a67b3663c4730e12315a02cafcb76268bf6a6a0d6c4595f7065351a8d0f97c54e91487b585e82adf59d549ef4764bcb2e2b0cd27606d19de
7
- data.tar.gz: 8735925790a820f325f8e77dfb5905ffff9b0666e2f712e7db36fcd6edec429e407f4d4b561fcbee6d824b0eab848d49b9e0f8213bb5b39e796a54abc153bb2d
6
+ metadata.gz: 5f2a4a3a0fdfee2b5249a782b9cc2def54d72cec4ba563f21c9838a18d970f09747705efe7dea68629bc81b91691e9d684a1a1d0a2d9995b29c006fe41fe7455
7
+ data.tar.gz: 120abf5ca5f499b1a2d4c2847139c29ecd26ae76f733e5cc9f1a35dc647dbec0690227d0ed6ae1bb43e98ad9e4936ea31c21536cdb19f012aa854bdb697c7c7d
@@ -0,0 +1,4 @@
1
+ <div class="code-header">
2
+ <button class="copy-code-button" aria-label="Copy code to clipboard"></button>
3
+ </div>
4
+
@@ -14,6 +14,7 @@
14
14
 
15
15
  <script src="/assets/js/jquery.min.js"></script>
16
16
  <script src="/assets/js/bootstrap.min.js"></script>
17
+ <script src="/assets/js/copycode.js"></script>
17
18
  </body>
18
19
 
19
20
  </html>
@@ -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
- @include content;
119
+ &__content {
120
+ @extend .col-sm-12;
121
+ @include content;
119
122
 
120
- .ais-search-box {
121
- max-width: 100%;
122
- margin-bottom: 15px;
123
- }
124
- .ais-hits {
125
- @include link-list;
126
- }
127
- .ais-pagination {
128
- li {
129
- text-decoration: none;
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 {
@@ -2,5 +2,6 @@
2
2
  @import "mixins/_content-nav";
3
3
  @import "mixins/_aside-nav";
4
4
  @import "mixins/_link-list";
5
+ @import "mixins/_code-header";
5
6
 
6
7
  @import "mixins/_post-nav-explorer"
@@ -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.2
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