sobekyll 0.2.7 → 0.2.9
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/_includes/slide-panel.html +3 -0
- data/assets/css/style.css +10 -0
- data/publish.sh +1 -1
- data/sobekyll.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4945857444798d42263db8377604373dfe0f2b33ef6c9832c6de9c345aa8166a
|
4
|
+
data.tar.gz: b7ba10ddb28d1dae30e3cfde5414c8f50f7fde43f5acd864bb2a9b5bcfa657f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bb9cd7604d01897294a5e31d218bb75fbcf5b87ef84cec6d20d1825bb03b70dda6738e72efa86d212c1d562aaccc5257ca9ccbbc03b62146eca8451aacdb55f
|
7
|
+
data.tar.gz: fa0d448087cf4a23c70e66514c461c23d612016fe617d4060723da96845def8e26bea721c7b2cd12c4eba11652b43a26f4134b9f53a2c934fff509c8ea8d3678
|
data/_includes/slide-panel.html
CHANGED
@@ -4,6 +4,9 @@
|
|
4
4
|
<div class="author">
|
5
5
|
<img class="author-avatar" src="{{ site.author.avatar }}">
|
6
6
|
<span class="author-name">{{ site.author.name }}</span>
|
7
|
+
{% if site.description %}
|
8
|
+
<small class="author-desc">{{ site.description }}</small>
|
9
|
+
{% endif %}
|
7
10
|
</div>
|
8
11
|
{% endif %}
|
9
12
|
{% if site.menus %}
|
data/assets/css/style.css
CHANGED
@@ -44,6 +44,12 @@ s-page {
|
|
44
44
|
/* 缩小字体 */
|
45
45
|
}
|
46
46
|
|
47
|
+
.author-desc {
|
48
|
+
max-width: 80%;
|
49
|
+
text-align: center;
|
50
|
+
margin-top: 8px;
|
51
|
+
}
|
52
|
+
|
47
53
|
main {
|
48
54
|
display: flex;
|
49
55
|
flex-direction: column;
|
@@ -136,6 +142,10 @@ article {
|
|
136
142
|
flex: 1;
|
137
143
|
display: flex;
|
138
144
|
flex-direction: column;
|
145
|
+
user-select: text !important;
|
146
|
+
-ms-user-select: text !important;
|
147
|
+
-moz-user-select: text !important;
|
148
|
+
-webkit-user-select: text !important;
|
139
149
|
}
|
140
150
|
|
141
151
|
.post-content {
|
data/publish.sh
CHANGED
@@ -1 +1 @@
|
|
1
|
-
gem push sobekyll-0.2.
|
1
|
+
gem push sobekyll-0.2.9.gem
|
data/sobekyll.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "sobekyll" # 你的主题名称
|
3
|
-
s.version = "0.2.
|
3
|
+
s.version = "0.2.9" # 版本号
|
4
4
|
s.summary = "A material design style Jekyll theme based on Sober." # 简短描述
|
5
5
|
s.description = "A material design style Jekyll theme based on Sober." # 详细描述
|
6
6
|
s.authors = ["boybeak"]
|