jekyll-theme-centos 2.30.0 → 2.31.0
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/base/script.html +0 -8
- data/_sass/base/_customization.scss +28 -23
- data/assets/icons/android-chrome-192.png +0 -0
- data/assets/icons/android-chrome-512.png +0 -0
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon-16.png +0 -0
- data/assets/icons/favicon-32.png +0 -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: 47d5180f6658b29ece68408d4669ba8bbaee92ba6c5e5d0fba7d02f4fb74d486
|
4
|
+
data.tar.gz: d52aef94a57a436b594cf5bf2d261d72ebb8529b90718180c99a30af3ea7d52b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4449340677d985437bf3eb23046c28ea914276ffa9153a219dcecc35c6c0ad69baa9523799e8dad67b276971915fb31019d75bf9edd1b82be2074a74d18aaf24
|
7
|
+
data.tar.gz: 203db6e134d17e1d2f2d731e9df5db0b30e8fe4c862eddd98fd9f6921d06e80bcdd64098e49a03a5f6d4d668466166ae033c038dab6526c1b130e729093d0d19
|
data/_includes/base/script.html
CHANGED
@@ -46,14 +46,6 @@
|
|
46
46
|
<!-- Bootstrap -->
|
47
47
|
<script src="{{ site.url }}{{ site.baseurl }}/assets/js/bootstrap.bundle.min.js"></script>
|
48
48
|
<script>
|
49
|
-
// Initialize styles
|
50
|
-
var tables = document.querySelectorAll(".content table");
|
51
|
-
var theads = document.querySelectorAll(".content table thead");
|
52
|
-
var images = document.querySelectorAll(".content img");
|
53
|
-
var i;
|
54
|
-
for(i = 0; i < tables.length; i++) { tables[i].className += " table table-bordered"; }
|
55
|
-
for(i = 0; i < theads.length; i++) { theads[i].className += " table-light"; }
|
56
|
-
for(i = 0; i < images.length; i++) { images[i].className += " figure-img img-fluid rounded"; }
|
57
49
|
// Initialize Tooltips
|
58
50
|
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]');
|
59
51
|
const tooltipList = [...tooltipTriggerList].map((tooltipTriggerEl) => new bootstrap.Tooltip(tooltipTriggerEl));
|
@@ -41,10 +41,11 @@ main {
|
|
41
41
|
scroll-margin-bottom: 100px;
|
42
42
|
margin-top: 3rem;
|
43
43
|
}
|
44
|
-
|
45
|
-
// Highlightjs-copy
|
46
|
-
// --------------------------------------------------------------------------------
|
44
|
+
|
47
45
|
.content {
|
46
|
+
// --------------------------------------------------------------------------------
|
47
|
+
// Highlightjs-copy
|
48
|
+
// --------------------------------------------------------------------------------
|
48
49
|
code.hljs {
|
49
50
|
border-radius: var(--bs-border-radius);
|
50
51
|
}
|
@@ -57,12 +58,10 @@ main {
|
|
57
58
|
--hljs-theme-background: var(--bs-body-color);
|
58
59
|
}
|
59
60
|
}
|
60
|
-
}
|
61
61
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
.content {
|
62
|
+
// --------------------------------------------------------------------------------
|
63
|
+
// Alerts
|
64
|
+
// --------------------------------------------------------------------------------
|
66
65
|
p {
|
67
66
|
&.alert {
|
68
67
|
padding-left: 3.4rem;
|
@@ -82,22 +81,28 @@ main {
|
|
82
81
|
background-image: $alert-success-icon;
|
83
82
|
}
|
84
83
|
}
|
85
|
-
}
|
86
84
|
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
85
|
+
// --------------------------------------------------------------------------------
|
86
|
+
// Tuneup first paragraph top margin when it is the first element inside
|
87
|
+
// content.
|
88
|
+
// --------------------------------------------------------------------------------
|
89
|
+
> p:first-child {
|
90
|
+
margin-top: 3rem;
|
91
|
+
}
|
92
|
+
|
93
|
+
// --------------------------------------------------------------------------------
|
94
|
+
// Tables
|
95
|
+
// --------------------------------------------------------------------------------
|
96
|
+
div.dataTables_wrapper {
|
97
|
+
margin-bottom: 1rem;
|
98
|
+
div.dataTables_info {
|
99
|
+
padding-top: 0;
|
100
|
+
}
|
101
|
+
}
|
102
|
+
table {
|
103
|
+
thead {
|
104
|
+
@extend .table-light;
|
105
|
+
}
|
101
106
|
}
|
102
107
|
}
|
103
108
|
}
|
Binary file
|
Binary file
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
Binary file
|
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: 2.
|
4
|
+
version: 2.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ReleaseBot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|