jekyll-theme-centos 0.6.13 → 0.6.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 134cd4db8b97b5e95fa0bcda8358b0c8c5690f26e8c24d04cdcb21439411fc5f
4
- data.tar.gz: a9f2948428b73419b56d1b49dba64b1e57ee3134dacfab45d9d7abae4461d21c
3
+ metadata.gz: 30d761cd88c90b433fa9080d7a17486cb2eeefca3eb71b9020c751730947437f
4
+ data.tar.gz: 00b1b5a134bef80f53728ea1ab7162bc5fd23af9987c7bead2ae061b928f5b7c
5
5
  SHA512:
6
- metadata.gz: 78fcadb72287005b9395ffbb9b6c19f068bfbef19da644df0975e149e1485546f780ed9d71d75f4520a421d877a199a642de18545d2d511d8e2bf9720817b391
7
- data.tar.gz: ec02d16777eb3233c919970440f59f1c9430840b1aeddaf690c6300e4ea8b219fdfd66874f13c0c2cdc60695a325d1564627df4cf5c5f4d01fc368c1fafb234f
6
+ metadata.gz: e9c8dc474c6a2f55aa4e5a66df96cede3c3d13eb3d5cdbe5cfcafd9d50ca07e6c4f204a63489f14cbdc344c3ee07efaa9d11ed4110827a0e9f16aa26adc7e743
7
+ data.tar.gz: 0ef940613ab2a273fcba28c367503aeee3cf1b9ceb997255ada802d50533a40a2337c9fe53a6880450cebc3be02fd7a0978800ffc46f5e618842c035234f417b
@@ -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
  }
@@ -73,12 +73,35 @@
73
73
  }
74
74
 
75
75
  &__mailman {
76
+ &__admlogin {
77
+ &> address:nth-child(4) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
78
+ background-color: $white;
79
+ border: none;
80
+ }
81
+ }
82
+ &__article {
83
+ padding: 0;
84
+ overflow: hidden;
85
+ max-height: none;
86
+ border: none;
87
+ background: $white;
88
+ font-size: 1rem;
89
+ white-space: pre-wrap;
90
+ }
76
91
  &__listinfo {
77
- &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td
78
- &> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td,
79
- &> address:nth-child(6) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td {
92
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1),
93
+ &> address:nth-child(8) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td,
94
+ &> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td {
80
95
  background-color: $white;
81
96
  border: none;
97
+ padding: 0;
98
+ }
99
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) {
100
+ padding: 0;
101
+ }
102
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > strong:nth-child(1) > font:nth-child(1),
103
+ &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(2) > strong:nth-child(1) > font:nth-child(1) {
104
+ font-size: 1rem;
82
105
  }
83
106
  &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) > font:nth-child(1) {
84
107
  @extend .h3;
@@ -92,6 +115,8 @@
92
115
  &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(4) {
93
116
  @extend .text-white, .bg-dark;
94
117
  }
118
+ }
119
+ &__listinfo, &__archtoc, &__archtocnombox, &__article, &__emptyarchive, &__options, &__roster, &__subscribe, &__private, &__admlogin {
95
120
  img {
96
121
  width: auto;
97
122
  }
@@ -170,7 +195,7 @@
170
195
  margin-bottom: 15px;
171
196
  }
172
197
  .ais-hits {
173
- @include link-list;
198
+ @include list-links;
174
199
  }
175
200
  .ais-pagination {
176
201
  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.13 (https://gitlab.com/areguera/jekyll-theme-centos/)
2
+ * jekyll-theme-centos v0.6.18 (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.13
4
+ version: 0.6.18
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