jekyll-theme-centos 2.3.0.beta.75 → 2.3.0.beta.77
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/head.html +1 -0
- data/_includes/script.html +1 -1
- data/_sass/_adjustments.scss +58 -0
- data/_sass/_variables.scss +27 -0
- data/_sass/sites/lists.scss +125 -0
- data/assets/css/stylesheet.lists.min.scss +3 -3
- data/assets/css/stylesheet.min.scss +2 -3
- data/assets/img/icons/android-chrome-192.png +0 -0
- data/assets/img/icons/android-chrome-512.png +0 -0
- data/assets/img/icons/apple-touch-icon.png +0 -0
- data/assets/img/icons/favicon-16.png +0 -0
- data/assets/img/icons/favicon-32.png +0 -0
- data/assets/img/icons/favicon.svg +1 -0
- metadata +11 -14
- data/assets/js/bootstrap.bundle.js +0 -7075
- data/assets/js/bootstrap.bundle.js.map +0 -1
- data/assets/js/bootstrap.bundle.min.js +0 -7
- data/assets/js/bootstrap.bundle.min.js.map +0 -1
- data/assets/js/bootstrap.esm.js +0 -5202
- data/assets/js/bootstrap.esm.js.map +0 -1
- data/assets/js/bootstrap.esm.min.js +0 -7
- data/assets/js/bootstrap.esm.min.js.map +0 -1
- data/assets/js/bootstrap.js +0 -5249
- data/assets/js/bootstrap.js.map +0 -1
- data/assets/js/bootstrap.min.js +0 -7
- data/assets/js/bootstrap.min.js.map +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db62c5a9846ee41a912b3c680e3e8466282807ec3e70518da734a04041ba649c
|
4
|
+
data.tar.gz: 4c193864b6fa37727359f325d60eb57925238050da054af6dd48a91efb5690ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fe04a2e405aba6374d78338b1a2d37726929dfec72eda97faff9307291f42f5e317b24e2bbe51626f388ad8451e22f5fd43b816fd6c9727c9f3d1aad819bdf7
|
7
|
+
data.tar.gz: 65b47082a1cda72c9f4b5280fc8ae4bc2cb0d923a12eda93704478d4751ce73633db772af7d2b7641253072cb2227365a18d67844540d1c3a72a58a6d411941d
|
data/_includes/head.html
CHANGED
@@ -10,5 +10,6 @@
|
|
10
10
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900" />
|
11
11
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Overpass+Mono:100,200,300,400,500,600,700,800,900" />
|
12
12
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
13
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous" />
|
13
14
|
<link rel="stylesheet" href="{{ site.data.centos.identity.logo.link }}/assets/css/stylesheet.min.css" />
|
14
15
|
</head>
|
data/_includes/script.html
CHANGED
@@ -65,7 +65,7 @@
|
|
65
65
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/js/all.min.js" integrity="sha512-fD9DI5bZwQxOi7MhYWnnNPlvXdp/2Pj3XSTRrFs5FQa4mizyGLnJcN6tuvUS6LbmgN1ut+XGSABKvjN0H6Aoow==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
66
66
|
|
67
67
|
<!-- Bootstrap -->
|
68
|
-
<script src="
|
68
|
+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
|
69
69
|
<script>
|
70
70
|
// Initialize Tooltips
|
71
71
|
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]');
|
@@ -0,0 +1,58 @@
|
|
1
|
+
// --------------------------------------------------------------------------------
|
2
|
+
// Adjustments
|
3
|
+
// --------------------------------------------------------------------------------
|
4
|
+
|
5
|
+
main {
|
6
|
+
// --------------------------------------------------------------------------------
|
7
|
+
// Navbar and linked headings' correction.
|
8
|
+
//
|
9
|
+
// By default, when you access page headings from the page table of content
|
10
|
+
// (toc) links, the heading is hidden behind the navbar. This workaround
|
11
|
+
// fixes the linked headings visibility issue in the page.
|
12
|
+
// --------------------------------------------------------------------------------
|
13
|
+
h1,
|
14
|
+
h2,
|
15
|
+
h3,
|
16
|
+
h4,
|
17
|
+
h5,
|
18
|
+
h6 {
|
19
|
+
&::before {
|
20
|
+
display: block;
|
21
|
+
height: 6rem;
|
22
|
+
margin-top: -6rem;
|
23
|
+
visibility: hidden;
|
24
|
+
content: "";
|
25
|
+
}
|
26
|
+
margin-top: 3rem;
|
27
|
+
}
|
28
|
+
|
29
|
+
// --------------------------------------------------------------------------------
|
30
|
+
// Backgrounds
|
31
|
+
// --------------------------------------------------------------------------------
|
32
|
+
.bg-image {
|
33
|
+
background: url(../img/centos-motif.png) right center / cover;
|
34
|
+
}
|
35
|
+
|
36
|
+
.bg-light-radial-gradient {
|
37
|
+
background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
|
38
|
+
}
|
39
|
+
|
40
|
+
// --------------------------------------------------------------------------------
|
41
|
+
// DataTable
|
42
|
+
// --------------------------------------------------------------------------------
|
43
|
+
.dataTables_wrapper {
|
44
|
+
.dataTables_filter {
|
45
|
+
text-align: end;
|
46
|
+
}
|
47
|
+
.dataTables_length,
|
48
|
+
.dataTables_filter {
|
49
|
+
margin-top: 3rem;
|
50
|
+
margin-bottom: 3rem;
|
51
|
+
}
|
52
|
+
.form-select,
|
53
|
+
.form-control {
|
54
|
+
width: auto;
|
55
|
+
display: inline-block;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
//
|
2
|
+
// CentOS Branding
|
3
|
+
//
|
4
|
+
// $centos-color-1: #a14f8c;
|
5
|
+
// $centos-color-2: #262577;
|
6
|
+
// $centos-color-3: #9ccd2a;
|
7
|
+
// $centos-color-4: #efa724;
|
8
|
+
//
|
9
|
+
// Bootstrap customization
|
10
|
+
//
|
11
|
+
:root {
|
12
|
+
--bs-primary: #a14f8c;
|
13
|
+
--bs-primary-rgb: 161, 79, 140;
|
14
|
+
--bs-secondary: #efa724;
|
15
|
+
--bs-secondary-rgb: 239, 167, 36;
|
16
|
+
--bs-dark: #200735;
|
17
|
+
--bs-dark-rgb: 32, 7, 53;
|
18
|
+
--bs-font-sans-serif: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
19
|
+
--bs-font-monospace: "Overpass Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
20
|
+
--bs-link-color: var(--bs-primary);
|
21
|
+
--bs-link-hover-color: var(--bs-primary);
|
22
|
+
}
|
23
|
+
|
24
|
+
.dropdown-menu-dark {
|
25
|
+
--bs-dropdown-bg: var(--bs-dark);
|
26
|
+
--bs-dropdown-link-active-bg: var(--bs-primary);
|
27
|
+
}
|
@@ -0,0 +1,125 @@
|
|
1
|
+
/*
|
2
|
+
* This file provides customization for lists.centos.org site. There is one id
|
3
|
+
* selector per template. The id selector name and the template name are both
|
4
|
+
* the same so you can correlate them.
|
5
|
+
*/
|
6
|
+
|
7
|
+
.row > {
|
8
|
+
hr {
|
9
|
+
margin-top: 3em;
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
#mmcfg {
|
14
|
+
h2 {
|
15
|
+
margin-top: 0;
|
16
|
+
padding-top: 0.5rem;
|
17
|
+
|
18
|
+
&:before {
|
19
|
+
display: none;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
> table:nth-child(2) {
|
23
|
+
> tbody:nth-child(1) {
|
24
|
+
> tr {
|
25
|
+
> td {
|
26
|
+
padding: 0.5rem;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
> tr:nth-child(4) {
|
30
|
+
> td {
|
31
|
+
background-color: var(--bs-dark);
|
32
|
+
> strong {
|
33
|
+
> font {
|
34
|
+
font-size: 1rem;
|
35
|
+
color: #fff;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
#admlogin {
|
45
|
+
h4 {
|
46
|
+
margin-top: 0;
|
47
|
+
padding-top: 0;
|
48
|
+
|
49
|
+
&:before {
|
50
|
+
display: none;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
#archidxhead {
|
56
|
+
ul > {
|
57
|
+
ul {
|
58
|
+
list-style-type: none;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
#article {
|
64
|
+
pre {
|
65
|
+
overflow: hidden;
|
66
|
+
max-height: none;
|
67
|
+
font-size: 1rem;
|
68
|
+
white-space: pre-wrap;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
#listinfo {
|
73
|
+
h2 {
|
74
|
+
margin-top: 1rem;
|
75
|
+
padding-top: 1rem;
|
76
|
+
|
77
|
+
&:before {
|
78
|
+
display: none;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
#options {
|
84
|
+
h2,
|
85
|
+
h4 {
|
86
|
+
margin-top: 1rem;
|
87
|
+
padding-top: 1rem;
|
88
|
+
&:before {
|
89
|
+
display: none;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
h3,
|
94
|
+
h5 {
|
95
|
+
margin-top: 0;
|
96
|
+
padding-top: 0;
|
97
|
+
&:before {
|
98
|
+
display: none;
|
99
|
+
}
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
// -----------------------------------------------------------------------------
|
104
|
+
// Forms
|
105
|
+
// -----------------------------------------------------------------------------
|
106
|
+
// NOTE: The form HTML elements are generated dynamically by mailman and
|
107
|
+
// templates provide small control over them.
|
108
|
+
// -----------------------------------------------------------------------------
|
109
|
+
input {
|
110
|
+
margin-bottom: 1rem;
|
111
|
+
&[type="text"],
|
112
|
+
&[type="password"] {
|
113
|
+
}
|
114
|
+
&[type="checkbox"],
|
115
|
+
&[type="radio"] {
|
116
|
+
}
|
117
|
+
&[type="submit"] {
|
118
|
+
}
|
119
|
+
}
|
120
|
+
textarea {
|
121
|
+
margin-bottom: 1rem;
|
122
|
+
}
|
123
|
+
select {
|
124
|
+
margin-bottom: 1rem;
|
125
|
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 42.333 42.333"><g transform="matrix(1.0529 0 0 1.05289 -387.492 265.985)"><circle cx="435.079" cy="-124.144" r="20.103" style="fill:#a14f8c;fill-opacity:1;stroke:none;stroke-width:1.32292;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000" transform="rotate(-15)" fill="none"/><path d="m384.257-249.617-3.875 3.875h-5.479v5.48l-3.875 3.875 3.875 3.874v5.48h5.48l3.874 3.875 3.875-3.875h5.48v-5.48l3.874-3.874-3.875-3.875-5.48-5.48zm1.176 3.875v4.18l-1.176 1.176-1.176-1.176v-4.18zm-6.959 1.908 2.956 2.957v1.662h-1.663l-2.956-2.956zm-3.571 6.27h4.18l1.176 1.177-1.176 1.176h-4.18zm14.434 0h4.18v2.353h-4.18l-1.176-1.176zm-9.503 3.937h1.663v1.663l-2.956 2.956-1.663-1.663zm7.184 0h1.663l2.956 2.956-1.663 1.663-2.956-2.956zm-2.76 1.143 1.175 1.176v4.18h-2.352v-4.18z" style="fill:#fff;fill-opacity:1;stroke-width:7.93746;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="matrix(1.15 0 0 1.15 -53.772 39.325)" fill="none"/><path d="m385.433-239.09-1.176 1.04-1.176-1.04v1.526h-1.526l1.039 1.177-1.04 1.176h1.527v1.526l1.176-1.04 1.176 1.04v-1.526h1.527l-1.04-1.176 1.04-1.177h-1.527z" style="fill:#efa724;fill-opacity:1;stroke-width:8.59212;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="matrix(1.15 0 0 1.15 -53.772 39.325)" fill="none"/><path d="m388.135-245.738 1.905 1.905-2.956 2.956v1.663h1.663l2.956-2.956 1.911 1.911-.003-5.483z" style="fill:#efa724;fill-opacity:1;stroke-width:6.14231;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000" transform="matrix(1.15 0 0 1.15 -53.772 39.325)" fill="none"/></g></svg>
|
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.3.0.beta.
|
4
|
+
version: 2.3.0.beta.77
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Release
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -104,6 +104,9 @@ files:
|
|
104
104
|
- _layouts/post.html
|
105
105
|
- _layouts/search.html
|
106
106
|
- _layouts/sponsors.html
|
107
|
+
- _sass/_adjustments.scss
|
108
|
+
- _sass/_variables.scss
|
109
|
+
- _sass/sites/lists.scss
|
107
110
|
- assets/css/dataTables.bootstrap5.css
|
108
111
|
- assets/css/dataTables.bootstrap5.min.css
|
109
112
|
- assets/css/stylesheet.lists.min.scss
|
@@ -133,24 +136,18 @@ files:
|
|
133
136
|
- assets/img/distributions/centos-stream/9/screenshot-n.png
|
134
137
|
- assets/img/distributions/name/release/screenshot-n.png
|
135
138
|
- assets/img/distributions/name/release/screenshot-n.svg
|
139
|
+
- assets/img/icons/android-chrome-192.png
|
140
|
+
- assets/img/icons/android-chrome-512.png
|
141
|
+
- assets/img/icons/apple-touch-icon.png
|
142
|
+
- assets/img/icons/favicon-16.png
|
143
|
+
- assets/img/icons/favicon-32.png
|
144
|
+
- assets/img/icons/favicon.svg
|
136
145
|
- assets/img/people/username.png
|
137
146
|
- assets/img/sort_asc.png
|
138
147
|
- assets/img/sort_asc_disabled.png
|
139
148
|
- assets/img/sort_both.png
|
140
149
|
- assets/img/sort_desc.png
|
141
150
|
- assets/img/sort_desc_disabled.png
|
142
|
-
- assets/js/bootstrap.bundle.js
|
143
|
-
- assets/js/bootstrap.bundle.js.map
|
144
|
-
- assets/js/bootstrap.bundle.min.js
|
145
|
-
- assets/js/bootstrap.bundle.min.js.map
|
146
|
-
- assets/js/bootstrap.esm.js
|
147
|
-
- assets/js/bootstrap.esm.js.map
|
148
|
-
- assets/js/bootstrap.esm.min.js
|
149
|
-
- assets/js/bootstrap.esm.min.js.map
|
150
|
-
- assets/js/bootstrap.js
|
151
|
-
- assets/js/bootstrap.js.map
|
152
|
-
- assets/js/bootstrap.min.js
|
153
|
-
- assets/js/bootstrap.min.js.map
|
154
151
|
- assets/js/clipboard.min.js
|
155
152
|
- assets/js/dataTables.bootstrap5.min.js
|
156
153
|
- assets/js/jquery.dataTables.min.js
|