jekyll-theme-centos 0.5.5 → 0.5.10
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/README.md +2 -3
- data/_includes/post-nav-explorer.html +1 -1
- data/_sass/centos/mixins/_code-header.scss +4 -10
- data/assets/js/copycode.js +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47057b339abcf735055ec1ecdc1677d245c90060be0d203bd3eeb30ae8d55c17
|
|
4
|
+
data.tar.gz: 6434b806b2c5ef8244b354fad3ae1aff25e844fca61e57bc2fc3645a6053d6d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88080cd3eb3478d8aefb6310fb7a4c73ab071c466410b81ac04f89a14450d0beaf5021b038aedadc5e510a05cf20437990de4b6dbf4901b690f2efb65f3e8981
|
|
7
|
+
data.tar.gz: 67486a1707a35bd2669cf610d944bf8637ad50487b3f691588d1a401bd87778eeb989d763e47b7ce85274f28b43ed5cc30851e0674b0bcd7a83d3fc283c8ad14
|
data/README.md
CHANGED
|
@@ -32,13 +32,12 @@ Or install it yourself as:
|
|
|
32
32
|
|
|
33
33
|
## Usage
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
sass and/or assets.
|
|
35
|
+
Usage documentation is available at https://gitlab.com/areguera/jekyll-theme-centos-styleguide/.
|
|
37
36
|
|
|
38
37
|
## Contributing
|
|
39
38
|
|
|
40
39
|
Bug reports and pull requests are welcome on GitHub at
|
|
41
|
-
https://
|
|
40
|
+
https://gitlab.com/areguera/jekyll-theme-centos. This project is intended to be
|
|
42
41
|
a safe, welcoming space for collaboration, and contributors are expected to
|
|
43
42
|
adhere to the [Contributor Covenant](http://contributor-covenant.org) code of
|
|
44
43
|
conduct.
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<a href="{{ "/feed.xml" | relative_url }}"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="RSS"><i class="fas fa-rss"></i></button></a>
|
|
12
12
|
</div>
|
|
13
13
|
<div class="post__nav__explorer__index">
|
|
14
|
-
<a href="/{{ site.pagination.indexpage }}
|
|
14
|
+
<a href="/{{ site.pagination.indexpage }}.html"><button type="button" class="btn btn-light" data-toggle="tooltip" data-placement="top" title="Blog posts"><i class="fas fa-th"></i></button></a>
|
|
15
15
|
</div>
|
|
16
16
|
{% if page.next.url %}
|
|
17
17
|
<div class="post__nav__explorer__older">
|
|
@@ -7,20 +7,16 @@
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.copy-code-button {
|
|
10
|
+
@extend .btn, .btn-dark, .shadow-none;
|
|
11
|
+
border-radius: 0px;
|
|
10
12
|
display: grid;
|
|
11
13
|
grid-auto-flow: column;
|
|
12
14
|
align-items: center;
|
|
13
15
|
grid-column-gap: 4px;
|
|
14
16
|
border: none;
|
|
15
17
|
cursor: pointer;
|
|
16
|
-
background: $black;
|
|
17
|
-
color: $white;
|
|
18
|
+
background-color: $black;
|
|
18
19
|
font-size: small;
|
|
19
|
-
opacity: 0.7;
|
|
20
|
-
|
|
21
|
-
&:hover {
|
|
22
|
-
opacity: 0.85;
|
|
23
|
-
}
|
|
24
20
|
|
|
25
21
|
&:before {
|
|
26
22
|
@extend .fas;
|
|
@@ -33,11 +29,9 @@
|
|
|
33
29
|
|
|
34
30
|
// This class will be toggled via JavaScript
|
|
35
31
|
&.copied {
|
|
36
|
-
opacity: 1;
|
|
37
32
|
&:before {
|
|
38
33
|
@extend .fas;
|
|
39
|
-
content: fa-content($fa-var-check);
|
|
40
|
-
color: $green;
|
|
34
|
+
content: fa-content($fa-var-clipboard-check);
|
|
41
35
|
}
|
|
42
36
|
&:after {
|
|
43
37
|
content: "Copied!";
|
data/assets/js/copycode.js
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alain Reguera Delgado
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-04-
|
|
11
|
+
date: 2021-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|