jekyll-theme-centos 2.3.0.beta.136 → 2.3.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/_config.yml +13 -20
- data/_data/base/navbar.yml +48 -65
- data/_data/base/navbar_absolute.yml +2 -2
- data/_data/base/navbar_www.yml +74 -0
- data/_data/download/navbar.yml +2 -2
- data/_includes/base/footer.html +1 -1
- data/_includes/base/head.html +1 -1
- data/_includes/base/navbar.html +1 -1
- data/_includes/download/cards.html +1 -5
- data/_layouts/base/default.html +1 -1
- data/_layouts/download/{cards.html → default.html} +1 -1
- data/_sass/base/_centos.scss +9 -14
- data/assets/css/{stylesheet.min.scss → base/stylesheet.min.scss} +0 -0
- 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
- data/assets/img/base/screenshot.svg +135 -0
- data/assets/img/people/YourUsername.svg +16 -22
- data/site.webmanifest +11 -0
- metadata +11 -10
- data/_data/base/navbar_component.yml +0 -60
- data/_sass/base/_centos-lists.scss +0 -132
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59d54f2ca6d10928e2bd179b5cbac8dd10af0b5fd54521334e46560909f46f40
|
|
4
|
+
data.tar.gz: 55afb80a9cb97334fa6390f2fd14b14baf21169fd415f8c57092dd5d0924b5d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db147da4a8203e3b2de6bd06d0f1a6bcb3ca16aa23453467628fa3ea29d219c8387107ce3c3b46b0291781a630817db8acbb88502fa1cc481dc987c97bfb4d09
|
|
7
|
+
data.tar.gz: 5a3121d5d4142c393489437476e3df9b09bde2895551125053239a76d19e954b2b532390bf8f21a29996ac5f60190cdb41679eefb49012706a6bd69e086c2c59
|
data/_config.yml
CHANGED
|
@@ -14,14 +14,6 @@
|
|
|
14
14
|
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
|
|
15
15
|
# https://learnxinyminutes.com/docs/yaml/
|
|
16
16
|
|
|
17
|
-
# These are used to personalize your new site. If you look in the HTML files,
|
|
18
|
-
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
|
|
19
|
-
# You can create any custom variable you would like, and they will be
|
|
20
|
-
# accessible in the templates via {{ site.myvariable }}.
|
|
21
|
-
title: jekyll-theme-centos
|
|
22
|
-
email: areguera@centosproject.org
|
|
23
|
-
description: "Jekyll theme for CentOS project websites."
|
|
24
|
-
|
|
25
17
|
# site.manifestation - Set the name of the visual manifestation you are
|
|
26
18
|
# providing a site for. The theme presents this name on the right side of the
|
|
27
19
|
# CentOS logo. If this value is not empty, the navbar data must be related to
|
|
@@ -35,14 +27,11 @@ navbar_data_dirname: "base"
|
|
|
35
27
|
|
|
36
28
|
# site.navbar_data_filename - Set the name of the navbar data file. For
|
|
37
29
|
# example, if the navbar file is at `_data/base/navbar.yml', the value you need
|
|
38
|
-
# to provide is `navbar', without the extension.
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
#
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
# The subpath of your site, e.g. /blog
|
|
45
|
-
baseurl: "/artwork/centos-web/jekyll-theme-centos"
|
|
30
|
+
# to provide is `navbar', without the extension. The CentOS navbar is stored in
|
|
31
|
+
# jekyll-theme-centos-base component, specifcally in the file
|
|
32
|
+
# `src/YAML/navbar_www.yml'. The CentOS navbar is the one shipped in
|
|
33
|
+
# jekyll-theme-centos by default.
|
|
34
|
+
navbar_data_filename: "navbar_www"
|
|
46
35
|
|
|
47
36
|
defaults:
|
|
48
37
|
- scope:
|
|
@@ -68,14 +57,18 @@ collections:
|
|
|
68
57
|
permalink: /:categories/:title/
|
|
69
58
|
|
|
70
59
|
exclude:
|
|
71
|
-
- .
|
|
72
|
-
- .
|
|
60
|
+
- .bundle
|
|
61
|
+
- .git
|
|
73
62
|
- .sass-cache/
|
|
74
63
|
- .jekyll-cache/
|
|
75
|
-
-
|
|
64
|
+
- gemfiles/
|
|
76
65
|
- Gemfile
|
|
77
66
|
- Gemfile.lock
|
|
78
|
-
-
|
|
67
|
+
- node_modules/
|
|
68
|
+
- vendor/bundle/
|
|
69
|
+
- vendor/cache/
|
|
70
|
+
- vendor/gems/
|
|
71
|
+
- vendor/ruby/
|
|
79
72
|
|
|
80
73
|
sass:
|
|
81
74
|
style: compressed
|
data/_data/base/navbar.yml
CHANGED
|
@@ -1,74 +1,57 @@
|
|
|
1
1
|
---
|
|
2
2
|
#
|
|
3
|
-
# site.data.base.navbar - Control top navigation bar using relative links
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# www.dev).
|
|
3
|
+
# site.data.base.navbar - Control top navigation bar using relative links
|
|
4
|
+
# specific to jekyll-theme-centos-base website component. Not used inside
|
|
5
|
+
# CentOS websites. Used in website component presentation only.
|
|
7
6
|
#
|
|
8
|
-
- name: "
|
|
9
|
-
icon: "
|
|
10
|
-
link: "/
|
|
11
|
-
menu: []
|
|
12
|
-
visible_on: ["navbar"]
|
|
13
|
-
- name: "About"
|
|
14
|
-
icon: "fas fa-info-circle"
|
|
15
|
-
link: "#"
|
|
7
|
+
- name: "Layouts"
|
|
8
|
+
icon: "fa-solid fa-layer-group"
|
|
9
|
+
link: "/layouts/"
|
|
16
10
|
menu:
|
|
17
|
-
- name: "
|
|
18
|
-
link: "/
|
|
19
|
-
- name: "Frequently Asked Questions (FAQs)"
|
|
20
|
-
link: "https://wiki.centos.org/FAQ"
|
|
21
|
-
- name: "Special Interest Groups (SIGs)"
|
|
22
|
-
link: "https://wiki.centos.org/SpecialInterestGroups"
|
|
23
|
-
- name: "CentOS Variants"
|
|
24
|
-
link: "/variants"
|
|
25
|
-
- name: "Governance"
|
|
26
|
-
link: "/about/governance"
|
|
11
|
+
- name: "base/default.html"
|
|
12
|
+
link: "/layouts/default/"
|
|
27
13
|
visible_on: ["navbar", "footer"]
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
14
|
+
|
|
15
|
+
- name: "Includes"
|
|
16
|
+
icon: "fa-solid fa-arrows-turn-to-dots"
|
|
17
|
+
link: "/includes/"
|
|
31
18
|
menu:
|
|
32
|
-
- name: "
|
|
33
|
-
link: "
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
- name: "
|
|
39
|
-
link: "
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
- name: "
|
|
45
|
-
link: "/
|
|
46
|
-
icon: "fas fa-calendar-alt"
|
|
47
|
-
- name: "Planet"
|
|
48
|
-
link: "http://planet.centos.org/"
|
|
49
|
-
icon: "fas fa-newspaper"
|
|
50
|
-
- name: "Submit Bug"
|
|
51
|
-
link: "https://bugs.centos.org/"
|
|
52
|
-
icon: "fas fa-bug"
|
|
19
|
+
- name: "base/announcements.html"
|
|
20
|
+
link: "/includes/announcements/"
|
|
21
|
+
- name: "base/breadcrumbs.html"
|
|
22
|
+
link: "/includes/breadcrumbs/"
|
|
23
|
+
- name: "base/head.html"
|
|
24
|
+
link: "/includes/head/"
|
|
25
|
+
- name: "base/header.html"
|
|
26
|
+
link: "/includes/header/"
|
|
27
|
+
- name: "base/navbar.html"
|
|
28
|
+
link: "/includes/navbar/"
|
|
29
|
+
- name: "base/toc-accordion.html"
|
|
30
|
+
link: "/includes/toc-accordion/"
|
|
31
|
+
- name: "base/toc.html"
|
|
32
|
+
link: "/includes/toc/"
|
|
53
33
|
visible_on: ["navbar", "footer"]
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
34
|
+
|
|
35
|
+
- name: "Sass"
|
|
36
|
+
icon: "fa-brands fa-sass"
|
|
37
|
+
link: "/sass/"
|
|
57
38
|
menu:
|
|
58
|
-
- name: "
|
|
59
|
-
link: "
|
|
60
|
-
- name: "
|
|
61
|
-
link: "
|
|
62
|
-
|
|
63
|
-
|
|
39
|
+
- name: "base/variables"
|
|
40
|
+
link: "/sass/variables"
|
|
41
|
+
- name: "base/centos"
|
|
42
|
+
link: "/sass/centos"
|
|
43
|
+
visible_on: ["navbar", "footer"]
|
|
44
|
+
|
|
45
|
+
- name: "Data"
|
|
46
|
+
icon: "fa-solid fa-file-code"
|
|
47
|
+
link: "/data/"
|
|
48
|
+
menu:
|
|
49
|
+
- name: "site.data.base.identity"
|
|
50
|
+
link: "/data/identity"
|
|
51
|
+
- name: "site.data.base.navbar"
|
|
52
|
+
link: "/data/navbar"
|
|
53
|
+
- name: "site.data.base.navbar_absolute"
|
|
54
|
+
link: "/data/navbar_absolute"
|
|
55
|
+
- name: "site.data.base.navbar_component"
|
|
56
|
+
link: "/data/navbar_component"
|
|
64
57
|
visible_on: ["navbar", "footer"]
|
|
65
|
-
- name: "Help"
|
|
66
|
-
icon: "fas fa-life-ring"
|
|
67
|
-
link: "https://wiki.centos.org/Documentation?action=show&redirect=GettingHelp"
|
|
68
|
-
menu: []
|
|
69
|
-
visible_on: ["navbar"]
|
|
70
|
-
- name: "Search"
|
|
71
|
-
icon: "fas fa-search"
|
|
72
|
-
link: "/search"
|
|
73
|
-
menu: []
|
|
74
|
-
visible_on: []
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
#
|
|
3
|
-
# site.data.navbar_absolute - Control top navigation bar using absolute
|
|
4
|
-
# for both internal and external resources. Useful when you build the
|
|
3
|
+
# site.data.base.navbar_absolute - Control top navigation bar using absolute
|
|
4
|
+
# links for both internal and external resources. Useful when you build the
|
|
5
5
|
# navigation bar for sites other than "www.centos.org" website and you want to
|
|
6
6
|
# keep references to "www.centos.org."
|
|
7
7
|
#
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
#
|
|
3
|
+
# site.data.base.navbar_www - Control top navigation bar using relative links
|
|
4
|
+
# for internal resources and absolute links for external resources. Useful when
|
|
5
|
+
# you need the same site to be browsable on different environments (e.g., www
|
|
6
|
+
# and www.dev).
|
|
7
|
+
#
|
|
8
|
+
- name: "Download"
|
|
9
|
+
icon: "fas fa-download"
|
|
10
|
+
link: "/download"
|
|
11
|
+
menu: []
|
|
12
|
+
visible_on: ["navbar"]
|
|
13
|
+
- name: "About"
|
|
14
|
+
icon: "fas fa-info-circle"
|
|
15
|
+
link: "#"
|
|
16
|
+
menu:
|
|
17
|
+
- name: "About CentOS"
|
|
18
|
+
link: "/about"
|
|
19
|
+
- name: "Frequently Asked Questions (FAQs)"
|
|
20
|
+
link: "https://wiki.centos.org/FAQ"
|
|
21
|
+
- name: "Special Interest Groups (SIGs)"
|
|
22
|
+
link: "https://wiki.centos.org/SpecialInterestGroups"
|
|
23
|
+
- name: "CentOS Variants"
|
|
24
|
+
link: "/variants"
|
|
25
|
+
- name: "Governance"
|
|
26
|
+
link: "/about/governance"
|
|
27
|
+
visible_on: ["navbar", "footer"]
|
|
28
|
+
- name: "Community"
|
|
29
|
+
icon: "fas fa-users"
|
|
30
|
+
link: "#"
|
|
31
|
+
menu:
|
|
32
|
+
- name: "Contribute"
|
|
33
|
+
link: "https://wiki.centos.org/Contribute"
|
|
34
|
+
icon: "fas fa-hands-helping"
|
|
35
|
+
- name: "Forums"
|
|
36
|
+
link: "/forums/"
|
|
37
|
+
icon: "fas fa-comments"
|
|
38
|
+
- name: "Mailing Lists"
|
|
39
|
+
link: "https://wiki.centos.org/GettingHelp/ListInfo"
|
|
40
|
+
icon: "fas fa-envelope"
|
|
41
|
+
- name: "IRC"
|
|
42
|
+
link: "https://wiki.centos.org/irc"
|
|
43
|
+
icon: "fas fa-hashtag"
|
|
44
|
+
- name: "Calendar & IRC Meeting List"
|
|
45
|
+
link: "/community/calendar/"
|
|
46
|
+
icon: "fas fa-calendar-alt"
|
|
47
|
+
- name: "Planet"
|
|
48
|
+
link: "http://planet.centos.org/"
|
|
49
|
+
icon: "fas fa-newspaper"
|
|
50
|
+
- name: "Submit Bug"
|
|
51
|
+
link: "https://bugs.centos.org/"
|
|
52
|
+
icon: "fas fa-bug"
|
|
53
|
+
visible_on: ["navbar", "footer"]
|
|
54
|
+
- name: "Documentation"
|
|
55
|
+
icon: "fas fa-book"
|
|
56
|
+
link: "#"
|
|
57
|
+
menu:
|
|
58
|
+
- name: "Wiki"
|
|
59
|
+
link: "https://wiki.centos.org/"
|
|
60
|
+
- name: "Manuals"
|
|
61
|
+
link: "https://docs.centos.org/"
|
|
62
|
+
- name: "GPG Key Info"
|
|
63
|
+
link: "/keys"
|
|
64
|
+
visible_on: ["navbar", "footer"]
|
|
65
|
+
- name: "Help"
|
|
66
|
+
icon: "fas fa-life-ring"
|
|
67
|
+
link: "https://wiki.centos.org/Documentation?action=show&redirect=GettingHelp"
|
|
68
|
+
menu: []
|
|
69
|
+
visible_on: ["navbar"]
|
|
70
|
+
- name: "Search"
|
|
71
|
+
icon: "fas fa-search"
|
|
72
|
+
link: "/search"
|
|
73
|
+
menu: []
|
|
74
|
+
visible_on: []
|
data/_data/download/navbar.yml
CHANGED
data/_includes/base/footer.html
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<ul class="nav list-unstyled">
|
|
38
38
|
{% for item in site.data.base.footer.social -%}
|
|
39
39
|
<li class="nav-item">
|
|
40
|
-
<a class="btn btn-sm fs-5 link-primary" href="{{
|
|
40
|
+
<a class="btn btn-sm fs-5 link-primary" href="{{ item.link }}" role="button" aria-label="{{ item.name }}" data-bs-placement="bottom" data-bs-title="{{ item.name }}"><i class="{{ item.icon }}"></i></a>
|
|
41
41
|
</li>
|
|
42
42
|
{% endfor %}
|
|
43
43
|
</ul>
|
data/_includes/base/head.html
CHANGED
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
{% if page.with_datatables == true -%}
|
|
14
14
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/dataTables.bootstrap5.min.css">
|
|
15
15
|
{% endif -%}
|
|
16
|
-
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/stylesheet.min.css" />
|
|
16
|
+
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/base/stylesheet.min.css" />
|
|
17
17
|
</head>
|
data/_includes/base/navbar.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<nav class="navbar navbar-expand-lg navbar-dark bg-dark shadow">
|
|
4
4
|
<div class="container">
|
|
5
5
|
<a class="navbar-brand pt-1" href="{{ site.baseurl }}/"><img role="img" src="{{ site.baseurl }}/{{ site.data.base.identity.logo.navbar }}" height="32" alt="{{ site.title }}" />{% if site.manifestation != "" %}<span class="manifestation border-start border-light ps-3 ms-3 py-2 fs-6">{{ site.manifestation }}</span>{% endif %}</a>
|
|
6
|
-
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#
|
|
6
|
+
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
7
7
|
<span class="navbar-toggler-icon"></span>
|
|
8
8
|
</button>
|
|
9
9
|
<div class="collapse navbar-collapse" id="navbarContent">
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
{%
|
|
2
|
-
{% assign cards = site.data.centos.download | where: "page", include.download %}
|
|
3
|
-
{% else %}
|
|
4
|
-
{% assign cards = site.data.centos.download %}
|
|
5
|
-
{% endif %}
|
|
1
|
+
{% assign cards = site.data.download.cards %}
|
|
6
2
|
|
|
7
3
|
{% for card in cards %}
|
|
8
4
|
<div class="mb-5">
|
data/_layouts/base/default.html
CHANGED
data/_sass/base/_centos.scss
CHANGED
|
@@ -10,19 +10,14 @@ main {
|
|
|
10
10
|
// (toc) links, the heading is hidden behind the navbar. This workaround
|
|
11
11
|
// fixes the linked headings visibility issue in the page.
|
|
12
12
|
// --------------------------------------------------------------------------------
|
|
13
|
-
h1,
|
|
14
|
-
h2,
|
|
15
|
-
h3,
|
|
16
|
-
h4,
|
|
17
|
-
h5,
|
|
18
|
-
h6 {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
height: 6rem;
|
|
22
|
-
margin-top: -6rem;
|
|
23
|
-
visibility: hidden;
|
|
24
|
-
content: "";
|
|
25
|
-
}
|
|
13
|
+
.content > h1,
|
|
14
|
+
.content > h2,
|
|
15
|
+
.content > h3,
|
|
16
|
+
.content > h4,
|
|
17
|
+
.content > h5,
|
|
18
|
+
.content > h6 {
|
|
19
|
+
scroll-margin-top: 80px;
|
|
20
|
+
scroll-margin-bottom: 100px;
|
|
26
21
|
margin-top: 3rem;
|
|
27
22
|
}
|
|
28
23
|
|
|
@@ -30,7 +25,7 @@ main {
|
|
|
30
25
|
// Backgrounds
|
|
31
26
|
// --------------------------------------------------------------------------------
|
|
32
27
|
.bg-image {
|
|
33
|
-
background-image: url("
|
|
28
|
+
background-image: url("../../img/centos-motif.png");
|
|
34
29
|
background-size: cover;
|
|
35
30
|
background-repeat: no-repeat;
|
|
36
31
|
background-position: center;
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/icons/favicon-16.png
CHANGED
|
Binary file
|
data/assets/icons/favicon-32.png
CHANGED
|
Binary file
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="1920"
|
|
6
|
+
height="1080"
|
|
7
|
+
viewBox="0 0 507.99999 285.75"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg5"
|
|
10
|
+
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
11
|
+
sodipodi:docname="screenshot.svg"
|
|
12
|
+
inkscape:export-filename="component.png"
|
|
13
|
+
inkscape:export-xdpi="96"
|
|
14
|
+
inkscape:export-ydpi="96"
|
|
15
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
16
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
17
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
20
|
+
<sodipodi:namedview
|
|
21
|
+
id="namedview7"
|
|
22
|
+
pagecolor="#ffffff"
|
|
23
|
+
bordercolor="#666666"
|
|
24
|
+
borderopacity="1.0"
|
|
25
|
+
inkscape:showpageshadow="2"
|
|
26
|
+
inkscape:pageopacity="0.0"
|
|
27
|
+
inkscape:pagecheckerboard="0"
|
|
28
|
+
inkscape:deskcolor="#d1d1d1"
|
|
29
|
+
inkscape:document-units="mm"
|
|
30
|
+
showgrid="false"
|
|
31
|
+
inkscape:zoom="0.75031886"
|
|
32
|
+
inkscape:cx="903.61583"
|
|
33
|
+
inkscape:cy="707.69912"
|
|
34
|
+
inkscape:window-width="3440"
|
|
35
|
+
inkscape:window-height="1371"
|
|
36
|
+
inkscape:window-x="0"
|
|
37
|
+
inkscape:window-y="32"
|
|
38
|
+
inkscape:window-maximized="1"
|
|
39
|
+
inkscape:current-layer="layer1" />
|
|
40
|
+
<defs
|
|
41
|
+
id="defs2">
|
|
42
|
+
<pattern
|
|
43
|
+
inkscape:collect="always"
|
|
44
|
+
xlink:href="#Strips1_1white"
|
|
45
|
+
id="pattern2972"
|
|
46
|
+
patternTransform="matrix(3.9313961,2.2697926,-4.2207076,7.31048,-1374.3636,-516.81011)" />
|
|
47
|
+
<pattern
|
|
48
|
+
inkscape:collect="always"
|
|
49
|
+
patternUnits="userSpaceOnUse"
|
|
50
|
+
width="2"
|
|
51
|
+
height="1"
|
|
52
|
+
patternTransform="translate(0,0) scale(10,10)"
|
|
53
|
+
id="Strips1_1white"
|
|
54
|
+
inkscape:stockid="Stripes 1:1 white">
|
|
55
|
+
<rect
|
|
56
|
+
style="fill:white;stroke:none"
|
|
57
|
+
x="0"
|
|
58
|
+
y="-0.5"
|
|
59
|
+
width="1"
|
|
60
|
+
height="2"
|
|
61
|
+
id="rect1946" />
|
|
62
|
+
</pattern>
|
|
63
|
+
</defs>
|
|
64
|
+
<g
|
|
65
|
+
inkscape:label="Layer 1"
|
|
66
|
+
inkscape:groupmode="layer"
|
|
67
|
+
id="layer1"
|
|
68
|
+
transform="translate(1361.2655,457.33365)">
|
|
69
|
+
<rect
|
|
70
|
+
style="fill:#f6f5f4;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
71
|
+
id="rect241"
|
|
72
|
+
width="508"
|
|
73
|
+
height="285.75"
|
|
74
|
+
x="-1361.2655"
|
|
75
|
+
y="-457.33365" />
|
|
76
|
+
<rect
|
|
77
|
+
style="opacity:0.15;fill:url(#pattern2972);fill-opacity:1;stroke:none;stroke-width:1.5875;stroke-linejoin:bevel;paint-order:fill markers stroke;stop-color:#000000"
|
|
78
|
+
id="rect405"
|
|
79
|
+
width="508"
|
|
80
|
+
height="285.75"
|
|
81
|
+
x="-1361.2655"
|
|
82
|
+
y="-457.33365" />
|
|
83
|
+
<g
|
|
84
|
+
id="g28251-9"
|
|
85
|
+
transform="matrix(1.4890225,1.4890225,-1.4890225,1.4890225,-2118.0722,-523.30074)"
|
|
86
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v20.png"
|
|
87
|
+
inkscape:export-xdpi="10.11"
|
|
88
|
+
inkscape:export-ydpi="10.11"
|
|
89
|
+
style="stroke-width:0.5">
|
|
90
|
+
<ellipse
|
|
91
|
+
style="fill:#deddda;fill-opacity:1;stroke:none;stroke-width:0.66146;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke;stop-color:#000000"
|
|
92
|
+
id="ellipse15079-1"
|
|
93
|
+
cx="388.1235"
|
|
94
|
+
cy="-290.71561"
|
|
95
|
+
inkscape:export-filename="/home/areguera/Pictures/centos-symbol-v10.png"
|
|
96
|
+
inkscape:export-xdpi="13.06"
|
|
97
|
+
inkscape:export-ydpi="13.06"
|
|
98
|
+
rx="20.103001"
|
|
99
|
+
ry="20.103493" />
|
|
100
|
+
<path
|
|
101
|
+
id="rect52127-5-0"
|
|
102
|
+
style="fill:#f6f5f4;fill-opacity:1;stroke-width:4.56404;stroke-linecap:round;paint-order:fill markers stroke;stop-color:#000000"
|
|
103
|
+
d="m 377.36591,-301.47322 3.1e-4,6.30167 -4.45593,4.45594 4.45593,4.45593 -3.1e-4,6.30167 h 6.30198 l 4.45594,4.45593 4.45593,-4.45593 h 6.30134 l 3.2e-4,-6.30167 4.45594,-4.45593 -4.45594,-4.45594 -3.2e-4,-6.30167 h -6.30134 l -4.45593,-4.45593 -4.45594,4.45593 z m 2.27111,4.18345 1.91265,-1.91265 3.2276,3.22761 -3.2e-4,1.91263 h -1.91233 z m -2.16283,5.22203 4.56454,-3.4e-4 1.35246,1.35247 -1.35246,1.35246 h -4.56422 z m 9.29718,-9.29718 h 2.70491 v 4.56422 l -1.35245,1.35246 -1.35246,-1.35246 z m 0.0911,7.6066 1.26064,1.28263 1.26035,-1.28295 -0.0154,1.79789 1.7982,-0.0158 -1.28231,1.26034 1.28296,1.26033 -1.79821,-0.0152 0.0158,1.79822 -1.26032,-1.28232 -1.26034,1.28296 0.0154,-1.79853 -1.79853,0.0162 1.28263,-1.26065 -1.28296,-1.26034 1.79822,0.0158 z m -7.2255,9.61687 3.2276,-3.2276 1.91264,3.2e-4 v 1.91232 l -3.2276,3.2276 z m 11.83335,-11.83336 3.22761,-3.22761 1.91264,1.91265 -3.2276,3.22759 h -1.91233 z m -4.69869,11.34461 1.35214,-1.35213 1.35214,1.35213 3.1e-4,4.56455 -2.7046,-3.2e-4 z m 6.08509,-6.08509 1.35246,-1.35245 h 4.56422 l -3.2e-4,2.70459 h -4.56422 z m -1.3864,3.34656 1.91265,-3.2e-4 3.2276,3.2276 -1.91265,1.91264 -3.2276,-3.2276 z" />
|
|
104
|
+
</g>
|
|
105
|
+
<rect
|
|
106
|
+
style="fill:#deddda;stroke-width:0.529167;stroke-linejoin:bevel;stroke-dasharray:1.05833, 0.529167;paint-order:fill markers stroke;stop-color:#000000;fill-opacity:1"
|
|
107
|
+
id="rect1545"
|
|
108
|
+
width="508"
|
|
109
|
+
height="51.3218"
|
|
110
|
+
x="-1361.2655"
|
|
111
|
+
y="-300.21335" />
|
|
112
|
+
<text
|
|
113
|
+
xml:space="preserve"
|
|
114
|
+
style="font-size:23.252px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
|
|
115
|
+
x="-1107.4166"
|
|
116
|
+
y="-266.41425"
|
|
117
|
+
id="JEKYLL_THEME_COMPONENT"><tspan
|
|
118
|
+
sodipodi:role="line"
|
|
119
|
+
id="tspan471"
|
|
120
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:23.252px;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#ffffff;stroke-width:0.264583"
|
|
121
|
+
x="-1107.4166"
|
|
122
|
+
y="-266.41425">=JEKYLL_THEME_COMPONENT=</tspan></text>
|
|
123
|
+
<text
|
|
124
|
+
xml:space="preserve"
|
|
125
|
+
style="font-size:11.626px;line-height:1.95;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Normal';text-align:center;text-anchor:middle;fill:#deddda;fill-opacity:1;stroke-width:0.264583"
|
|
126
|
+
x="-1107.2714"
|
|
127
|
+
y="-206.62192"
|
|
128
|
+
id="JEKYLL_THEME_COMPONENT_DESCRIPTION"><tspan
|
|
129
|
+
sodipodi:role="line"
|
|
130
|
+
id="tspan471-2"
|
|
131
|
+
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11.626px;font-family:Montserrat;-inkscape-font-specification:'Montserrat, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;text-align:center;text-anchor:middle;fill:#deddda;fill-opacity:1;stroke-width:0.264583"
|
|
132
|
+
x="-1107.2714"
|
|
133
|
+
y="-206.62192">=JEKYLL_THEME_COMPONENT_DESCRIPTION=</tspan></text>
|
|
134
|
+
</g>
|
|
135
|
+
</svg>
|
|
@@ -24,41 +24,35 @@
|
|
|
24
24
|
inkscape:deskcolor="#d1d1d1"
|
|
25
25
|
inkscape:document-units="px"
|
|
26
26
|
showgrid="false"
|
|
27
|
-
inkscape:zoom="1.
|
|
28
|
-
inkscape:cx="
|
|
29
|
-
inkscape:cy="
|
|
27
|
+
inkscape:zoom="1.5827039"
|
|
28
|
+
inkscape:cx="36.646148"
|
|
29
|
+
inkscape:cy="83.401579"
|
|
30
30
|
inkscape:window-width="3440"
|
|
31
31
|
inkscape:window-height="1371"
|
|
32
32
|
inkscape:window-x="0"
|
|
33
|
-
inkscape:window-y="
|
|
33
|
+
inkscape:window-y="32"
|
|
34
34
|
inkscape:window-maximized="1"
|
|
35
35
|
inkscape:current-layer="layer1" />
|
|
36
36
|
<defs
|
|
37
|
-
id="defs2"
|
|
38
|
-
<symbol
|
|
39
|
-
id="user-circle">
|
|
40
|
-
<title
|
|
41
|
-
id="user-circle-title">User Circle</title>
|
|
42
|
-
<path
|
|
43
|
-
d="M 256,8 C 119.033,8 8,119.033 8,256 8,392.967 119.033,504 256,504 392.967,504 504,392.967 504,256 504,119.033 392.967,8 256,8 Z M 144,208 c 0,-61.856 50.144,-112 112,-112 61.856,0 112,50.144 112,112 0,61.856 -50.144,112 -112,112 -61.856,0 -112,-50.144 -112,-112 z m 268.408,172.663 c -80.346,100.411 -232.375,100.53 -312.817,0 C 117.003,362.973 141.218,352 168,352 h 18.204 c 44.03,21.336 95.495,21.368 139.592,0 H 344 c 26.782,0 50.997,10.973 68.408,28.663 z"
|
|
44
|
-
id="path3183" />
|
|
45
|
-
</symbol>
|
|
46
|
-
</defs>
|
|
37
|
+
id="defs2" />
|
|
47
38
|
<g
|
|
48
39
|
inkscape:label="Layer 1"
|
|
49
40
|
inkscape:groupmode="layer"
|
|
50
41
|
id="layer1"
|
|
51
|
-
transform="translate(
|
|
42
|
+
transform="translate(206.62042,9.1068344)">
|
|
43
|
+
<path
|
|
44
|
+
id="rect425"
|
|
45
|
+
style="fill:#ffffff;stroke-width:0.529164;stroke-linejoin:bevel;stroke-dasharray:1.05833, 0.529164;paint-order:fill markers stroke;stop-color:#000000"
|
|
46
|
+
d="m -206.62042,-9.1068344 h 67.733 V 58.626167 h -67.733 z" />
|
|
52
47
|
<g
|
|
53
|
-
id="
|
|
54
|
-
style="fill:#
|
|
55
|
-
transform="matrix(0.
|
|
48
|
+
id="use2409"
|
|
49
|
+
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:5.12"
|
|
50
|
+
transform="matrix(0.05167618,0,0,0.05167618,-185.98302,11.530564)">
|
|
56
51
|
<title
|
|
57
|
-
id="
|
|
52
|
+
id="title3102">User</title>
|
|
58
53
|
<path
|
|
59
|
-
d="M
|
|
60
|
-
id="
|
|
61
|
-
style="fill:#ffffff;fill-opacity:1" />
|
|
54
|
+
d="M 96,160 C 96,71.634 167.635,0 256,0 344.365,0 416,71.634 416,160 416,248.366 344.365,320 256,320 167.635,320 96,248.366 96,160 Z m 304,192 h -28.556 c -71.006,42.713 -159.912,42.695 -230.888,0 H 112 C 50.144,352 0,402.144 0,464 v 24 c 0,13.255 10.745,24 24,24 h 464 c 13.255,0 24,-10.745 24,-24 V 464 C 512,402.144 461.856,352 400,352 Z"
|
|
55
|
+
id="path3104" />
|
|
62
56
|
</g>
|
|
63
57
|
</g>
|
|
64
58
|
</svg>
|
data/site.webmanifest
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "",
|
|
3
|
+
"short_name": "",
|
|
4
|
+
"icons": [
|
|
5
|
+
{ "src": "/android-chrome-192.png", "sizes": "192x192", "type": "image/png" },
|
|
6
|
+
{ "src": "/android-chrome-512.png", "sizes": "512x512", "type": "image/png" }
|
|
7
|
+
],
|
|
8
|
+
"theme_color": "#ffffff",
|
|
9
|
+
"background_color": "#ffffff",
|
|
10
|
+
"display": "standalone"
|
|
11
|
+
}
|
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
|
|
4
|
+
version: 2.3.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-
|
|
11
|
+
date: 2023-07-08 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
|
-
-
|
|
43
|
+
- project_42168898_bot_fc4d36df521f3af961708bdae505f7c7@noreply.gitlab.com
|
|
44
44
|
executables: []
|
|
45
45
|
extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
|
@@ -50,7 +50,7 @@ files:
|
|
|
50
50
|
- _data/base/identity.yml
|
|
51
51
|
- _data/base/navbar.yml
|
|
52
52
|
- _data/base/navbar_absolute.yml
|
|
53
|
-
- _data/base/
|
|
53
|
+
- _data/base/navbar_www.yml
|
|
54
54
|
- _data/download/cards.yml
|
|
55
55
|
- _data/download/navbar.yml
|
|
56
56
|
- _data/people/navbar.yml
|
|
@@ -91,13 +91,12 @@ files:
|
|
|
91
91
|
- _includes/post-nav.html
|
|
92
92
|
- _layouts/base/default.html
|
|
93
93
|
- _layouts/blog.html
|
|
94
|
-
- _layouts/download/
|
|
94
|
+
- _layouts/download/default.html
|
|
95
95
|
- _layouts/home.html
|
|
96
96
|
- _layouts/people/default.html
|
|
97
97
|
- _layouts/post.html
|
|
98
98
|
- _layouts/search.html
|
|
99
99
|
- _layouts/sponsors.html
|
|
100
|
-
- _sass/base/_centos-lists.scss
|
|
101
100
|
- _sass/base/_centos.scss
|
|
102
101
|
- _sass/base/_variables.scss
|
|
103
102
|
- _sass/bootstrap/_accordion.scss
|
|
@@ -192,9 +191,9 @@ files:
|
|
|
192
191
|
- _sass/bootstrap/mixins/_visually-hidden.scss
|
|
193
192
|
- _sass/bootstrap/utilities/_api.scss
|
|
194
193
|
- _sass/bootstrap/vendor/_rfs.scss
|
|
194
|
+
- assets/css/base/stylesheet.min.scss
|
|
195
195
|
- assets/css/dataTables.bootstrap5.css
|
|
196
196
|
- assets/css/dataTables.bootstrap5.min.css
|
|
197
|
-
- assets/css/stylesheet.min.scss
|
|
198
197
|
- assets/icons/android-chrome-192.png
|
|
199
198
|
- assets/icons/android-chrome-512.png
|
|
200
199
|
- assets/icons/apple-touch-icon.png
|
|
@@ -204,6 +203,7 @@ files:
|
|
|
204
203
|
- assets/icons/favicon.svg
|
|
205
204
|
- assets/img/anaconda-symbolic.svg
|
|
206
205
|
- assets/img/anaconda.svg
|
|
206
|
+
- assets/img/base/screenshot.svg
|
|
207
207
|
- assets/img/centos-dynamicmsg-logo.svg
|
|
208
208
|
- assets/img/centos-dynamicmsg-type.svg
|
|
209
209
|
- assets/img/centos-dynamicmsg-whitelogo.svg
|
|
@@ -251,6 +251,7 @@ files:
|
|
|
251
251
|
- assets/js/jquery.min.js
|
|
252
252
|
- assets/js/jquery.slim.min.js
|
|
253
253
|
- assets/js/vanilla-back-to-top.min.js
|
|
254
|
+
- site.webmanifest
|
|
254
255
|
homepage: https://gitlab.com/CentOS/artwork/centos-web/jekyll-theme-centos
|
|
255
256
|
licenses:
|
|
256
257
|
- MIT
|
|
@@ -266,9 +267,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
266
267
|
version: 3.2.0
|
|
267
268
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
268
269
|
requirements:
|
|
269
|
-
- - "
|
|
270
|
+
- - ">="
|
|
270
271
|
- !ruby/object:Gem::Version
|
|
271
|
-
version:
|
|
272
|
+
version: '0'
|
|
272
273
|
requirements: []
|
|
273
274
|
rubygems_version: 3.4.10
|
|
274
275
|
signing_key:
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
#
|
|
3
|
-
# site.data.base.navbar_component - Control top navigation bar using relative
|
|
4
|
-
# links specific to jekyll-theme-centos-base website component. Not used inside
|
|
5
|
-
# CentOS websites. Used in website component presentation only.
|
|
6
|
-
#
|
|
7
|
-
|
|
8
|
-
- name: "Layouts"
|
|
9
|
-
icon: "fa-solid fa-layer-group"
|
|
10
|
-
link: "/layouts/"
|
|
11
|
-
menu:
|
|
12
|
-
- name: "base/default.html"
|
|
13
|
-
link: "/layouts/default/"
|
|
14
|
-
visible_on: ["navbar", "footer"]
|
|
15
|
-
|
|
16
|
-
- name: "Includes"
|
|
17
|
-
icon: "fa-solid fa-arrows-turn-to-dots"
|
|
18
|
-
link: "/includes/"
|
|
19
|
-
menu:
|
|
20
|
-
- name: "base/announcements.html"
|
|
21
|
-
link: "/includes/announcements/"
|
|
22
|
-
- name: "base/breadcrumbs.html"
|
|
23
|
-
link: "/includes/breadcrumbs/"
|
|
24
|
-
- name: "base/head.html"
|
|
25
|
-
link: "/includes/head/"
|
|
26
|
-
- name: "base/header.html"
|
|
27
|
-
link: "/includes/header/"
|
|
28
|
-
- name: "base/navbar.html"
|
|
29
|
-
link: "/includes/navbar/"
|
|
30
|
-
- name: "base/toc-accordion.html"
|
|
31
|
-
link: "/includes/toc-accordion/"
|
|
32
|
-
- name: "base/toc.html"
|
|
33
|
-
link: "/includes/toc/"
|
|
34
|
-
visible_on: ["navbar", "footer"]
|
|
35
|
-
|
|
36
|
-
- name: "Sass"
|
|
37
|
-
icon: "fa-brands fa-sass"
|
|
38
|
-
link: "/sass/"
|
|
39
|
-
menu:
|
|
40
|
-
- name: "base/variables.scss"
|
|
41
|
-
link: "/sass/variables"
|
|
42
|
-
- name: "base/centos.scss"
|
|
43
|
-
link: "/sass/centos"
|
|
44
|
-
- name: "base/centos-lists.scss"
|
|
45
|
-
link: "/sass/centos-lists"
|
|
46
|
-
visible_on: ["navbar", "footer"]
|
|
47
|
-
|
|
48
|
-
- name: "Data"
|
|
49
|
-
icon: "fa-solid fa-file-code"
|
|
50
|
-
link: "/data/"
|
|
51
|
-
menu:
|
|
52
|
-
- name: "site.data.base.identity"
|
|
53
|
-
link: "/data/identity"
|
|
54
|
-
- name: "site.data.base.navbar"
|
|
55
|
-
link: "/data/navbar"
|
|
56
|
-
- name: "site.data.base.navbar_absolute"
|
|
57
|
-
link: "/data/navbar_absolute"
|
|
58
|
-
- name: "site.data.base.navbar_component"
|
|
59
|
-
link: "/data/navbar_component"
|
|
60
|
-
visible_on: ["navbar", "footer"]
|
|
@@ -1,132 +0,0 @@
|
|
|
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: $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. maintainability harder. To
|
|
108
|
-
// customize forms presentation, let's extend bootstrap classes for each one
|
|
109
|
-
// used.
|
|
110
|
-
// -----------------------------------------------------------------------------
|
|
111
|
-
input {
|
|
112
|
-
margin-bottom: 1rem;
|
|
113
|
-
&[type="text"],
|
|
114
|
-
&[type="password"] {
|
|
115
|
-
@extend .form-control;
|
|
116
|
-
}
|
|
117
|
-
&[type="checkbox"],
|
|
118
|
-
&[type="radio"] {
|
|
119
|
-
@extend .form-check-input;
|
|
120
|
-
}
|
|
121
|
-
&[type="submit"] {
|
|
122
|
-
@extend .btn, .btn-primary;
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
textarea {
|
|
126
|
-
margin-bottom: 1rem;
|
|
127
|
-
@extend .form-control;
|
|
128
|
-
}
|
|
129
|
-
select {
|
|
130
|
-
margin-bottom: 1rem;
|
|
131
|
-
@extend .form-select;
|
|
132
|
-
}
|