jekyll-theme-centos 0.6.16 → 0.6.21

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: d67034869bc079bf7b5c6da4a12fb2430320193a64310f892c7963935d4ea1c9
4
- data.tar.gz: 1376370bc19cb4f6d6c3d5a9fec1fef38161d06008a8abe0c90ed7691de536db
3
+ metadata.gz: 4c51f7cf15fc8d355e99207e9f61c22e735eaf054862281f1c41104469304059
4
+ data.tar.gz: e5e689dda8ea691b3659190faf1343344aabeaad3502e51530a3d54a78e26e88
5
5
  SHA512:
6
- metadata.gz: 2ca086edcea740091a69a5547c9f8a9e0069b1db7dbae5a4097394d617727d624cbc58e78fd98a0405fc2b36beddbbfe06456c3075e3c9850e3aec2148489983
7
- data.tar.gz: 5a5274221d8acf02b430cff7bdc3426252b14fc45da8f3054cf62a68397c44c5891876c03fd1002ea4a856b3bfbffedd689b765f91da552542a496640ff37311
6
+ metadata.gz: e06e7584bdcd8b57e0d92537997ac51b66cd953dfa2855b2f8c95a48dba75e1410cdecff8acc34d09b63131a8123cde62598a1830b2ad6d1a0fdd49a141ee70d
7
+ data.tar.gz: cd7f7554998fe737b9babbffac35849c5fd7995f1d2d462c1ce63f791f38e5b6717a2aadaf1768c9cf0d34f322d1d45e224d81985e1af7adc619323cbbc14f44
@@ -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,12 +86,36 @@
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 {
91
+ background-color: $white;
92
+ border: none;
93
+ padding: 0;
94
+ vertical-align: middle;
95
+ }
96
+ &> address:nth-child(4) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) {
97
+ text-align: center;
98
+ }
99
+ &> address:nth-child(4) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(3) {
100
+ text-align: right;
101
+ }
102
+ }
76
103
  &__listinfo {
77
104
  &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1),
105
+ &> address:nth-child(8) > table:nth-child(8) > tbody:nth-child(1) > tr:nth-child(1) > td,
106
+ &> address:nth-child(5) > p:nth-child(7) > table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td,
78
107
  &> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td {
79
108
  background-color: $white;
80
109
  border: none;
81
110
  padding: 0;
111
+ vertical-align: middle;
112
+ text-align: left;
113
+ }
114
+ &> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) {
115
+ text-align: center;
116
+ }
117
+ &> table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(3) {
118
+ text-align: right;
82
119
  }
83
120
  &> table:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(1) {
84
121
  padding: 0;
@@ -179,7 +216,7 @@
179
216
  margin-bottom: 15px;
180
217
  }
181
218
  .ais-hits {
182
- @include link-list;
219
+ @include list-links;
183
220
  }
184
221
  .ais-pagination {
185
222
  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.16 (https://gitlab.com/areguera/jekyll-theme-centos/)
2
+ * jekyll-theme-centos v0.6.21 (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.16
4
+ version: 0.6.21
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