jekyll-theme-open-project 2.0.16 → 2.0.17

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
  SHA1:
3
- metadata.gz: a4d0759e674a68d04270b5506aa86eb15f332eec
4
- data.tar.gz: 58118a601f3601d0475d7939b744caefa2d771d3
3
+ metadata.gz: f95beca807a4e9dd6e94f0c6d4d3b6da57595333
4
+ data.tar.gz: dadd18b2e4621c88bb4cc10f71a4bb21be11e95a
5
5
  SHA512:
6
- metadata.gz: b5d0dd62ebe8b920be3af7330acc3f88d4ae866a1f5e3f0271c6cdf1ebd1706910230a2029aa441bc81beb8dbadcfdfebf5aecf9b5ee0ba2d129ac2f957b9180
7
- data.tar.gz: 1d8b86581475836e01629d100fafca63558064a397c2b59baae0234e8e71eef103c8908bfb31b543893cae3bbab4e53df4cdd685865c72e5e2519b9bc500518e
6
+ metadata.gz: ce9f55845344835cc3afae884d1620ae4c4d97ce8fb95025f7512fbd78071cc609302db8ed87639df3cb50582558aa398948a6c52f16a76eaa60f6d5eded8e10
7
+ data.tar.gz: 0d50d605c7ba71c480f513cfe1f4e16476087a302d936964454ffa651cab0749f3c43671cb2c30e7664e1b6a2e7e5fbc23c37f2e352b08d50270a08b2aa6a717
data/README.md CHANGED
@@ -221,17 +221,24 @@ already required by Jekyll) looks like:
221
221
 
222
222
  ```yaml
223
223
  ---
224
+ # Required
225
+ authors:
226
+ - email: <author’s email, required>
227
+ use_picture: <`gravatar` (default), `assets`, an image path relative to assets/, or `no`>
228
+ name: <author’s full name>
229
+ social_links:
230
+ - https://twitter.com/username
231
+ - https://facebook.com/username
232
+ - https://linkedin.com/in/username
233
+
234
+ # Recommended
224
235
  excerpt: >-
225
- Post excerpt goes here, and supports inline formatting only.
226
-
227
- author:
228
- email: <author’s email, required>
229
- use_picture: <`gravatar` (default), `assets`, an image path relative to assets/, or `no`>
230
- name: <author’s full name>
231
- social_links:
232
- - https://twitter.com/username
233
- - https://facebook.com/username
234
- - https://linkedin.com/in/username
236
+ Post excerpt goes here, and supports inline HTML formatting only.
237
+
238
+ # Optional. Cover image. Would normally refer to an illustration from within the post.
239
+ # First post, if it has card_image specified, will be displayed with bigger layout
240
+ # featuring the image.
241
+ card_image: <path, starting with /assets/>
235
242
  ---
236
243
  ```
237
244
 
data/_config.yml CHANGED
@@ -2,7 +2,7 @@ markdown: kramdown
2
2
 
3
3
  includes_dir: .
4
4
 
5
- permalink: /blog/:month-:day-:year/:title/
5
+ permalink: /blog/:year-:month-:day-:title/
6
6
 
7
7
  # algolia_search:
8
8
  # api_key: ''
@@ -1,5 +1,5 @@
1
1
  {% if include.post.parent_project %}
2
- {% capture href %}{{ include.post.parent_project.home_url }}blog/{{ include.post.date | date: "%m-%d-%Y" }}/{{ include.post.slug }}/{% endcapture %}
2
+ {% capture href %}{{ include.post.parent_project.home_url }}blog/{{ include.post.date | date: "%Y-%m-%d" }}-{{ include.post.slug }}/{% endcapture %}
3
3
  {% else %}
4
4
  {% capture href %}{{ include.post.url }}{% endcapture %}
5
5
  {% endif %}
@@ -223,6 +223,31 @@
223
223
 
224
224
  // Blocks
225
225
 
226
+ .admonitionblock {
227
+ > table {
228
+ display: flex;
229
+ flex-flow: column nowrap;
230
+
231
+ tbody {
232
+ display: flex;
233
+ flex-flow: column nowrap;
234
+
235
+ tr {
236
+ display: flex;
237
+ flex-flow: column nowrap;
238
+
239
+ @media screen and (min-width: $bigscreen-breakpoint) {
240
+ flex-flow: row nowrap;
241
+ }
242
+
243
+ td.content {
244
+ overflow-x: hidden;
245
+ }
246
+ }
247
+ }
248
+ }
249
+ }
250
+
226
251
  .admonitionblock,
227
252
  .listingblock {
228
253
  margin: 1em 0;
@@ -281,14 +306,17 @@
281
306
  }
282
307
 
283
308
  .admonitionblock {
284
- overflow-x: scroll;
285
309
  padding-left: .5em;
286
310
  background-color: rgba(black, 0.03);
287
311
 
288
- table:first-child {
312
+ @media screen and (min-width: $bigscreen-breakpoint) {
313
+ overflow-x: scroll;
314
+ }
315
+
316
+ > table:first-child {
289
317
  margin-top: 0;
290
318
  }
291
- table:last-child {
319
+ > table:last-child {
292
320
  margin-bottom: 0;
293
321
  }
294
322
 
@@ -556,6 +584,11 @@
556
584
  overflow-y: auto;
557
585
  bottom: 0;
558
586
  right: 0;
587
+ left: 0;
588
+
589
+ @media screen and (min-width: $bigscreen-breakpoint) {
590
+ left: unset;
591
+ }
559
592
 
560
593
  padding: .75em $sidePadding;
561
594
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-open-project
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.16
4
+ version: 2.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-29 00:00:00.000000000 Z
11
+ date: 2019-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - '='
74
74
  - !ruby/object:Gem::Version
75
- version: 2.0.16
75
+ version: 2.0.17
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - '='
81
81
  - !ruby/object:Gem::Version
82
- version: 2.0.16
82
+ version: 2.0.17
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: bundler
85
85
  requirement: !ruby/object:Gem::Requirement