jekyll-theme-centos 0.6.15 → 0.6.20

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: 238f03f26763e021e0fa1d3427ab8e337efd525c6914d2146f13981af648df6e
4
- data.tar.gz: f0a76008487b1a1c47740e1d4685e5842620b2d350d5b1311d3c39ef2827c7e0
3
+ metadata.gz: 3d9d00e8a158df39400ac6f792c187a724f74b4648f7b214a9ba9a75a94748dd
4
+ data.tar.gz: 8a6000c121a8e41adb4029b4d6f81ac94d54a593c10a4d198f9b51f340eb7666
5
5
  SHA512:
6
- metadata.gz: 6d71f13baf88575893e024b647842885745699f5f5659c489d0b95974ded711ce4a319fe70bfc7517e0d0fafb075ce80b2079f8178293bcc5d863ac1a878bd35
7
- data.tar.gz: 54cd892ff43482103f0ed6cdacb97210c1f1e5dfb0031ce5c0f093ce851c5dc946283f7298c48100ae124ba87348900e78a9279ca6c4412c16cbb468c1c2328d
6
+ metadata.gz: 3cb831a2fffd7b8feefc303728683559c41c9443db9656663057a3aaf148bd9c2482bd43c79febb86de223f9d573de18350733af6e0f030b2c56c22461518cdb
7
+ data.tar.gz: ad1ea45946929d5ec2927ef2735111f7cf827c22c86e7e5ef8d67a2117aef68c9a81c7db89b44ed4b6dbfffd2e3fc2d98ff4fab51cc9e62916919569c1110049
@@ -1,11 +1,6 @@
1
1
  .footer {
2
2
 
3
- a {
4
- color: rgba(255,255,255,0.75);
5
- &:hover {
6
- color: $white;
7
- }
8
- }
3
+ @include header-links;
9
4
 
10
5
  background-image: url($centos-img-motif);
11
6
  background-size: cover;
@@ -1,5 +1,7 @@
1
1
  .header {
2
2
 
3
+ @include header-links;
4
+
3
5
  color: $white;
4
6
  background-image: url($centos-img-motif);
5
7
  background-color: $dark;
@@ -28,7 +28,7 @@
28
28
  }
29
29
  &__planet, &__news-and-events {
30
30
  a { font-weight: bold; }
31
- @include link-list;
31
+ @include list-links;
32
32
  }
33
33
  }
34
34
  }
@@ -45,6 +45,19 @@
45
45
  @extend .col-sm-12, .col-md-12, .col-lg-8, .col-xl-8;
46
46
  @include content;
47
47
  @include content-nav;
48
+ &__mailman {
49
+ &__article {
50
+ pre {
51
+ padding: 0;
52
+ overflow: hidden;
53
+ max-height: none;
54
+ border: none;
55
+ background: $white;
56
+ font-size: 1rem;
57
+ white-space: pre-wrap;
58
+ }
59
+ }
60
+ }
48
61
  }
49
62
  }
50
63
 
@@ -73,8 +86,15 @@
73
86
  }
74
87
 
75
88
  &__mailman {
89
+ &__admlogin {
90
+ &> address:nth-child(4) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
91
+ background-color: $white;
92
+ border: none;
93
+ }
94
+ }
76
95
  &__listinfo {
77
96
  &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1),
97
+ &> address:nth-child(8) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td,
78
98
  &> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td {
79
99
  background-color: $white;
80
100
  border: none;
@@ -99,6 +119,8 @@
99
119
  &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) {
100
120
  @extend .text-white, .bg-dark;
101
121
  }
122
+ }
123
+ &__listinfo, &__archtoc, &__archtocnombox, &__article, &__emptyarchive, &__options, &__roster, &__subscribe, &__private, &__admlogin {
102
124
  img {
103
125
  width: auto;
104
126
  }
@@ -177,7 +199,7 @@
177
199
  margin-bottom: 15px;
178
200
  }
179
201
  .ais-hits {
180
- @include link-list;
202
+ @include list-links;
181
203
  }
182
204
  .ais-pagination {
183
205
  li {
@@ -1,7 +1,8 @@
1
1
  @import "mixins/_content";
2
2
  @import "mixins/_content-nav";
3
3
  @import "mixins/_aside-nav";
4
- @import "mixins/_link-list";
4
+ @import "mixins/_list-links";
5
+ @import "mixins/_header-links";
5
6
  @import "mixins/_code-header";
6
7
 
7
8
  @import "mixins/_post-nav-explorer"
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * jekyll-theme-centos v0.6.15 (https://gitlab.com/areguera/jekyll-theme-centos/)
2
+ * jekyll-theme-centos v0.6.20 (https://gitlab.com/areguera/jekyll-theme-centos/)
3
3
  * Copyright 2020-2021 Alain Reguera Delgado
4
4
  * Licensed under MIT (https://gitlab.com/areguera/jekyll-theme-centos/-/blob/master/LICENSE)
5
5
  */
@@ -0,0 +1,8 @@
1
+ @mixin header-links {
2
+ a {
3
+ color: rgba(255,255,255,0.75);
4
+ &:hover {
5
+ color: $white;
6
+ }
7
+ }
8
+ }
@@ -1,4 +1,4 @@
1
- @mixin link-list {
1
+ @mixin list-links {
2
2
  ul {
3
3
  padding-left: 0;
4
4
  li {
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.6.15
4
+ version: 0.6.20
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-05-29 00:00:00.000000000 Z
11
+ date: 2021-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -213,7 +213,8 @@ files:
213
213
  - _sass/centos/mixins/_code-header.scss
214
214
  - _sass/centos/mixins/_content-nav.scss
215
215
  - _sass/centos/mixins/_content.scss
216
- - _sass/centos/mixins/_link-list.scss
216
+ - _sass/centos/mixins/_header-links.scss
217
+ - _sass/centos/mixins/_list-links.scss
217
218
  - _sass/centos/mixins/_post-nav-explorer.scss
218
219
  - _sass/fontawesome/_animated.scss
219
220
  - _sass/fontawesome/_bordered-pulled.scss