jekyll-theme-centos 2.44.0 → 2.46.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d5be09942277b626781ad93820933bbf462536bb5961a1311a7150e71d19dfb
4
- data.tar.gz: 0426044375a3e2d31eba8cf028601886f3b30d80c004a020f873869e15e8bea8
3
+ metadata.gz: 21ee2decc9dd05b3bb1feddf5eff8d717b1c2f65e454f3a94ce044ca7f373b67
4
+ data.tar.gz: b9feb0e57c0ae33070252db4b002567a296908c93bd548f591b6d4f374c88b7a
5
5
  SHA512:
6
- metadata.gz: 2db81c4c5e460cfaf4eb80afc9dd35f13f00b7d4a0c6722023d0c61558fe00d4fcfe6463ce54abff613ac04388befff91f09dd322cfa8d93fa220ab42434e025
7
- data.tar.gz: 7e942b604897986d16ff295fe6fbcf9e6b94eef97fab87fa18e57cf384d36ddd8e6f94d170f2064f22276be36653441926299deaca98bddf307b91b443cca76a
6
+ metadata.gz: dc8a27944551c1fb4a7535f21b62e97f152df54b226a8f427cd325584692d9e2cab3fe08ca846f17ae53ce08c4dffff4b4fe09448b9e26d258ede14ffe585bac
7
+ data.tar.gz: 531174767fbbdd15fa9ee2a0ad9dd1729b953610175e1f21c6fd2e418d129841bb1a68659fe031cdfca1750776a890e995d454f9c24015b898d1f50ffc57e94a
@@ -1,4 +1,8 @@
1
- {% assign copyright = site.data[site.navbar_data_dirname]["copyright"] %}
1
+ {% if site.data[site.component_data_dirname]["copyright"] %}
2
+ {% assign copyright = site.data[site.component_data_dirname]["copyright"] %}
3
+ {% else %}
4
+ {% assign copyright = site.data.base.copyright %}
5
+ {% endif %}
2
6
  <div class="row my-3">
3
7
  <div class="col">
4
8
  <span>Copyright &copy;</span>
@@ -1,4 +1,8 @@
1
- {% assign social_networks = site.data[site.navbar_data_dirname]["social"] %}
1
+ {% if site.data[site.component_data_dirname]["social"] %}
2
+ {% assign social_networks = site.data[site.component_data_dirname]["social"] %}
3
+ {% else %}
4
+ {% assign social_networks = site.data.base.social %}
5
+ {% endif %}
2
6
  <div class="row">
3
7
 
4
8
  {% if page.with_social != false %}
@@ -1,4 +1,8 @@
1
- {% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
1
+ {% if site.data[site.component_data_dirname][site.component_data_navbar] %}
2
+ {% assign navbar = site.data[site.component_data_dirname][site.component_data_navbar] %}
3
+ {% else %}
4
+ {% assign navbar = site.data.base.navbar %}
5
+ {% endif %}
2
6
  <nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark bg-image shadow">
3
7
  <div class="container">
4
8
  <a class="navbar-brand" href="{{ site.url }}{{ site.baseurl }}/"><img src="{{ site.url }}{{ site.baseurl }}/assets/img/{{ page.with_logo }}" height="32" alt="{{ site.title }}" />{% if page.with_manifestation != "" %}<span class="manifestation border-start border-light ps-3 ms-3 py-2 fs-6">{{ page.with_manifestation }}</span>{% endif %}</a>
@@ -1,4 +1,8 @@
1
- {% assign navbar = site.data[site.navbar_data_dirname][site.navbar_data_filename] %}
1
+ {% if site.data[site.component_data_dirname][site.component_data_navbar] %}
2
+ {% assign navbar = site.data[site.component_data_dirname][site.component_data_navbar] %}
3
+ {% else %}
4
+ {% assign navbar = site.data.base.navbar %}
5
+ {% endif %}
2
6
  <div class="row bg-primary text-light">
3
7
  {% assign sections = navbar | where: "visible_on", "footer" %}
4
8
  {% assign columns = sections.size %}
@@ -1,11 +1,8 @@
1
1
  // --------------------------------------------------------------------------------
2
2
  // Adjustments
3
3
  // --------------------------------------------------------------------------------
4
- header,
5
- main,
6
- footer {
7
- position: relative;
8
- top: 59px;
4
+ body {
5
+ padding-top: 59px;
9
6
  }
10
7
 
11
8
  // --------------------------------------------------------------------------------
@@ -161,7 +158,7 @@ main {
161
158
  // Tables
162
159
  // --------------------------------------------------------------------------------
163
160
  div.dataTables_wrapper {
164
- margin-bottom: 1rem;
161
+ margin-bottom: $spacer;
165
162
  div.dataTables_info {
166
163
  padding-top: 0;
167
164
  }
@@ -0,0 +1,9 @@
1
+ // --------------------------------------------------------------------------------
2
+ // Spacing customization
3
+ // --------------------------------------------------------------------------------
4
+ $spacers: map-merge(
5
+ $spacers,
6
+ (
7
+ "6": $spacer * 5,
8
+ )
9
+ );
@@ -2,14 +2,14 @@
2
2
  // Bootstrap customization
3
3
  //
4
4
 
5
- // scss-docs-start color-variables
5
+ // --------------------------------------------------------------------------------
6
+ // Color
7
+ // --------------------------------------------------------------------------------
6
8
  $centos-purple: #a14f8c;
7
9
  $centos-orange: #efa724;
8
10
  $centos-blue: #262577;
9
11
  $centos-green: #9ccd2a;
10
- // scss-docs-end color-variables
11
12
 
12
- // scss-docs-start theme-color-variables
13
13
  $primary: $centos-purple;
14
14
  $secondary: $centos-orange;
15
15
  $dark: #200735;
@@ -17,27 +17,38 @@ $success: #198754;
17
17
  $info: #0dcaf0;
18
18
  $warning: #ffc107;
19
19
  $danger: #dc3545;
20
- // scss-docs-end theme-color-variables
21
20
 
22
- // scss-docs-start theme-text-variables
23
21
  $primary-text-emphasis: shade-color($primary, 60%);
24
22
  $secondary-text-emphasis: shade-color($secondary, 60%);
25
23
  $success-text-emphasis: shade-color($success, 60%);
26
24
  $info-text-emphasis: shade-color($info, 60%);
27
25
  $warning-text-emphasis: shade-color($warning, 60%);
28
26
  $danger-text-emphasis: shade-color($danger, 60%);
29
- // scss-docs-end theme-text-variables
27
+ $dropdown-dark-bg: $dark;
30
28
 
29
+ // --------------------------------------------------------------------------------
30
+ // Typography
31
+ // --------------------------------------------------------------------------------
31
32
  $font-family-sans-serif: "Montserrat", sans-serif;
32
33
  $font-family-monospace: "Source Code Pro", monospace;
33
34
  $headings-font-weight: 700;
34
35
 
35
- $dropdown-dark-bg: $dark;
36
+ // --------------------------------------------------------------------------------
37
+ // Breadcrumb
38
+ // --------------------------------------------------------------------------------
36
39
  $breadcrumb-divider: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8'><path d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z'/></svg>");
37
40
 
41
+ // --------------------------------------------------------------------------------
42
+ // Alerts
43
+ // --------------------------------------------------------------------------------
38
44
  $alert-primary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($primary-text-emphasis)},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:#{to-rgb($primary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
39
45
  $alert-secondary-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" viewBox="0 0 42.333 42.333"><g transform="rotate(45 -180.13 -610.203) scale(1.0529)"><circle cx="388.123" cy="-290.716" r="20.103" style="fill:rgba(#{to-rgb($secondary-text-emphasis)},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:#{to-rgb($secondary-text-emphasis)}"/><path d="M377.366-301.473v6.301l-4.456 4.456 4.456 4.456v6.302h6.302l4.456 4.456 4.456-4.456h6.301v-6.302l4.456-4.456-4.456-4.456v-6.301h-6.301l-4.456-4.456-4.456 4.456zm2.271 4.183 1.913-1.912 3.227 3.227v1.913h-1.912zm-2.163 5.222h4.565l1.352 1.352-1.352 1.353h-4.564zm9.297-9.297h2.705v4.564l-1.352 1.353-1.353-1.353zm.091 7.607 1.261 1.282 1.26-1.283-.015 1.798 1.798-.016-1.282 1.26 1.283 1.261-1.798-.015.016 1.798-1.26-1.282-1.261 1.283.015-1.799-1.798.016 1.282-1.26-1.283-1.26 1.799.015zm-7.225 9.617 3.228-3.228h1.912v1.913l-3.227 3.227zm11.833-11.834 3.228-3.227 1.913 1.912-3.228 3.228h-1.912zm-4.698 11.345 1.352-1.352 1.352 1.352v4.564h-2.704zm6.085-6.085 1.352-1.353h4.564v2.705h-4.564zm-1.387 3.346h1.913l3.228 3.228-1.913 1.912-3.228-3.227z" style="fill:%23fff;fill-opacity:1;stroke-width:9.12808;stroke-linecap:round;paint-order:fill markers stroke;stop-color:%23000"/></g></svg>');
40
46
  $alert-warning-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($warning-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"/></svg>');
41
47
  $alert-info-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($info-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>');
42
48
  $alert-danger-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($danger-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/></svg>');
43
49
  $alert-success-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1.8em" fill="rgba(#{to-rgb($success-text-emphasis)},1)" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"/></svg>');
50
+
51
+ // --------------------------------------------------------------------------------
52
+ // Negative margins
53
+ // --------------------------------------------------------------------------------
54
+ $enable-negative-margins: true;
@@ -1,7 +1,21 @@
1
1
  ---
2
2
  ---
3
3
 
4
+ // 1. Include functions first (so you can manipulate colors, SVGs, calc, etc)
4
5
  @import "bootstrap/functions";
6
+
7
+ // 2. Include any default variable overrides here
5
8
  @import "base/variables";
9
+
10
+ // 3. Include remainder of required Bootstrap stylesheets (including any separate color mode stylesheets)
11
+ @import "bootstrap/variables";
12
+ @import "bootstrap/variables-dark";
13
+
14
+ // 4. Include any default map overrides here
15
+ @import "base/maps";
16
+
17
+ // 5. Include remainder of required parts
6
18
  @import "bootstrap/bootstrap";
19
+
20
+ // 6. Add additional custom code here
7
21
  @import "base/customization";
Binary file
Binary file
Binary file
Binary file
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.44.0
4
+ version: 2.46.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-12-30 00:00:00.000000000 Z
11
+ date: 2023-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: 2.4.0
41
41
  description:
42
42
  email:
43
- - group_59038887_bot_0098cd54f9aafa134b0d6cff35203eae@noreply.gitlab.com
43
+ - group_59038887_bot_a628c51d395bebfb92f35a6f24badeac@noreply.gitlab.com
44
44
  executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
@@ -103,6 +103,7 @@ files:
103
103
  - _layouts/search.html
104
104
  - _layouts/sponsors.html
105
105
  - _sass/base/_customization.scss
106
+ - _sass/base/_maps.scss
106
107
  - _sass/base/_variables.scss
107
108
  - _sass/bootstrap/_accordion.scss
108
109
  - _sass/bootstrap/_alert.scss