jekyll-theme-basically-basic 1.1.2 → 1.1.3

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: aab05a3b7ac77e8676eb524193bb7531c0ac1edf
4
- data.tar.gz: 298b2507438991664883519f69b3cc0132021d0f
3
+ metadata.gz: 78234485f44f5953b9c14621fa94ee1ae3aa5dfb
4
+ data.tar.gz: 081309c2a66a683dbe4038ee8f242ea54c20e9a5
5
5
  SHA512:
6
- metadata.gz: 1ec78fc185399cf8fab1458d8a42afcc288d46a8a3af41564dcb04b9458ab4893431bcc7d9556786733767bb107e7642d7fa732d91fb2e21d8bbf98037cc9f6b
7
- data.tar.gz: 698295660adfc3290808a0d02b79e170992ac237bcad1ccbf222b6f464e3df2ee5808a4213cae368fe48e553d42eba666015425339090c745bdaf36deaaa141b
6
+ metadata.gz: 2782aac00dc3d8c894ed777246912bd6dbd9c44978071351f0029409adeac3d25de3104d4cf95cc48ad63ff244b2816ec125a442603b48bf4479f73a5ee26e84
7
+ data.tar.gz: 56965a380395bc47c0ccd6eafaa1a6c5bcc0db22a12390922e4fc64cce6a1fc500dc6ecb1e09e4d9071f6069a874d5d0afcbc7e4c195cb0aaf6ad220c9e86f1e
@@ -5,10 +5,16 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
+ ## [1.1.3] - 2017-10-19
9
+
10
+ ### Fixed
11
+ - Fixed `{nil, "picture"=>nil"}` in `_layouts/about.html` when author image isn't set. [#34](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/34)
12
+
8
13
  ## [1.1.2] - 2017-09-14
9
14
 
10
15
  ### Fixed
11
- - `/_sass/_print.scss` to reduce blank pages when printing in Chrome. [#29](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/29)
16
+ - Adjusted `/_sass/_print.scss` to reduce blank pages when printing in Chrome. [#29](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/29)
17
+ - Fixed sidebar visibility bug in Firefox and Safari by adding toggling `visibility: hidden`. [#31](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/31)
12
18
 
13
19
  ## [1.1.1] - 2017-09-06
14
20
  ### Changed
@@ -1,21 +1,23 @@
1
- ---
2
- layout: default
3
- ---
4
-
5
- {% include page-intro.html %}
6
-
7
- <main id="main" class="page-content" aria-label="Content">
8
- <div class="inner">
9
- <div class="entry-wrap">
10
- <div class="entry-content">
11
- {{ content }}
12
- </div>
13
- <aside class="entry-sidebar">
14
- {% include author %}
15
- <img class="author-picture" src="{{ author_picture }}" alt="{{ author_name }}">
16
- </aside>
17
- </div>
18
-
19
- {% include footer.html %}
20
- </div>
21
- </main>
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {% include page-intro.html %}
6
+
7
+ <main id="main" class="page-content" aria-label="Content">
8
+ <div class="inner">
9
+ <div class="entry-wrap">
10
+ <div class="entry-content">
11
+ {{ content }}
12
+ </div>
13
+ <aside class="entry-sidebar">
14
+ {% include author %}
15
+ {% if author_picture %}
16
+ <img class="author-picture" src="{{ author_picture }}" alt="{{ author_name }}">
17
+ {% endif %}
18
+ </aside>
19
+ </div>
20
+
21
+ {% include footer.html %}
22
+ </div>
23
+ </main>
@@ -1,6 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <!--
3
- Basically Basic Jekyll Theme 1.1.2
3
+ Basically Basic Jekyll Theme 1.1.3
4
4
  Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
5
5
  Free for personal and commercial use under the MIT license
6
6
  https://github.com/mmistakes/jekyll-basically-theme/blob/master/LICENSE.md
@@ -1,41 +1,41 @@
1
1
  /*!
2
- * Basically Basic Jekyll Theme 1.1.2
2
+ * Basically Basic Jekyll Theme 1.1.3
3
3
  * Copyright 2017 Michael Rose - mademistakes | @mmistakes
4
4
  * Free for personal and commercial use under the MIT license
5
5
  * https://github.com/mmistakes/jekyll-theme-basically-basic/blob/master/LICENSE.md
6
6
  */
7
7
 
8
8
  /* Mixins and functions */
9
- @import 'basically-basic/vendor/susy';
10
- @import 'basically-basic/vendor/breakpoint';
11
- @include breakpoint-set('to ems', true);
12
- @import 'basically-basic/mixins';
9
+ @import "basically-basic/vendor/susy";
10
+ @import "basically-basic/vendor/breakpoint";
11
+ @include breakpoint-set("to ems", true);
12
+ @import "basically-basic/mixins";
13
13
 
14
14
  /* Variables */
15
- @import 'basically-basic/variables';
15
+ @import "basically-basic/variables";
16
16
 
17
17
  /* Core CSS */
18
- @import 'basically-basic/reset';
19
- @import 'basically-basic/base';
20
- @import 'basically-basic/layout';
21
- @import 'basically-basic/tables';
18
+ @import "basically-basic/reset";
19
+ @import "basically-basic/base";
20
+ @import "basically-basic/layout";
21
+ @import "basically-basic/tables";
22
22
 
23
23
  /* Components */
24
- @import 'basically-basic/global';
25
- @import 'basically-basic/sidebar';
26
- @import 'basically-basic/navigation';
27
- @import 'basically-basic/footer';
28
- @import 'basically-basic/entries';
29
- @import 'basically-basic/buttons';
30
- @import 'basically-basic/icons';
31
- @import 'basically-basic/intro';
32
- @import 'basically-basic/navicons';
33
- @import 'basically-basic/contact-lists';
34
- @import 'basically-basic/syntax-highlighting';
35
- @import 'basically-basic/responsive-embed';
24
+ @import "basically-basic/global";
25
+ @import "basically-basic/sidebar";
26
+ @import "basically-basic/navigation";
27
+ @import "basically-basic/footer";
28
+ @import "basically-basic/entries";
29
+ @import "basically-basic/buttons";
30
+ @import "basically-basic/icons";
31
+ @import "basically-basic/intro";
32
+ @import "basically-basic/navicons";
33
+ @import "basically-basic/contact-lists";
34
+ @import "basically-basic/syntax-highlighting";
35
+ @import "basically-basic/responsive-embed";
36
36
 
37
37
  /* Utility classes */
38
- @import 'basically-basic/utilities';
38
+ @import "basically-basic/utilities";
39
39
 
40
40
  /* Print */
41
- @import 'basically-basic/print';
41
+ @import "basically-basic/print";
@@ -1,252 +1,252 @@
1
- /* ==========================================================================
2
- PRINT STYLES
3
- ========================================================================== */
4
-
5
- @media print {
6
-
7
- [hidden] {
8
- display: none;
9
- }
10
-
11
- * {
12
- -moz-box-sizing: border-box;
13
- -webkit-box-sizing: border-box;
14
- box-sizing: border-box;
15
- }
16
-
17
- html {
18
- margin: 0;
19
- padding: 0;
20
- height: auto;
21
- min-height: auto !important;
22
- font-size: 16px;
23
- }
24
-
25
- body {
26
- margin: 0;
27
- height: auto;
28
- background: #fff !important;
29
- color: #000 !important;
30
- font-size: 1rem;
31
- line-height: 1.5;
32
- -moz-osx-font-smoothing: grayscale;
33
- -webkit-font-smoothing: antialiased;
34
- text-rendering: optimizeLegibility;
35
- }
36
-
37
- h1,
38
- h2,
39
- h3,
40
- h4,
41
- h5,
42
- h6 {
43
- margin-top: 0;
44
- margin-bottom: 0.75rem;
45
- color: #000;
46
- line-height: 1.2;
47
- }
48
-
49
- h1 {
50
- font-size: 2.5rem;
51
- }
52
-
53
- h2 {
54
- font-size: 2rem;
55
- }
56
-
57
- h3 {
58
- font-size: 1.75rem;
59
- }
60
-
61
- h4 {
62
- font-size: 1.5rem;
63
- }
64
-
65
- h5 {
66
- font-size: 1.25rem;
67
- }
68
-
69
- h6 {
70
- font-size: 1rem;
71
- }
72
-
73
- a {
74
- background: none;
75
- color: #000;
76
- text-decoration: underline;
77
- word-wrap: break-word;
78
- }
79
-
80
- table {
81
- border-collapse: collapse;
82
- }
83
-
84
- thead {
85
- display: table-header-group;
86
- }
87
-
88
- table,
89
- th,
90
- td {
91
- border-bottom: 1px solid #000;
92
- }
93
-
94
- td,
95
- th {
96
- padding: 8px 16px;
97
- }
98
-
99
- img {
100
- display: block;
101
- max-width: 100% !important;
102
- border: 0;
103
- vertical-align: middle;
104
- }
105
-
106
- hr {
107
- height: 0;
108
- margin: 2.25rem 0;
109
- padding: 0;
110
- border: 0;
111
- border-bottom: 2px solid #bbb;
112
- }
113
-
114
- dt {
115
- font-weight: bold;
116
- }
117
-
118
- dd {
119
- margin: 0;
120
- margin-bottom: 0.75rem;
121
- }
122
-
123
- abbr[title],
124
- acronym[title] {
125
- border: 0;
126
- text-decoration: none;
127
- }
128
-
129
- table,
130
- blockquote,
131
- pre,
132
- code,
133
- figure,
134
- li,
135
- hr,
136
- ul,
137
- ol,
138
- a,
139
- tr {
140
- page-break-inside: avoid;
141
- }
142
-
143
- h2,
144
- h3,
145
- h4,
146
- p,
147
- a {
148
- orphans: 3;
149
- widows: 3;
150
- }
151
-
152
- h1,
153
- h2,
154
- h3,
155
- h4,
156
- h5,
157
- h6 {
158
- page-break-after: avoid;
159
- page-break-inside: avoid;
160
- }
161
-
162
- h1 + p,
163
- h2 + p,
164
- h3 + p {
165
- page-break-before: avoid;
166
- }
167
-
168
- img {
169
- page-break-after: auto;
170
- page-break-before: auto;
171
- page-break-inside: avoid;
172
- }
173
-
174
- pre {
175
- white-space: pre-wrap !important;
176
- word-wrap: break-word;
177
- }
178
-
179
- a[href^='http://']::after,
180
- a[href^='https://']::after,
181
- a[href^='ftp://']::after {
182
- font-size: 80%;
183
- content: ' (' attr(href) ')';
184
- }
185
-
186
- abbr[title]::after,
187
- acronym[title]::after {
188
- content: ' (' attr(title) ')';
189
- }
190
-
191
- .wrapper {
192
- min-height: auto !important;
193
- }
194
-
195
- #main {
196
- max-width: 100%;
197
- }
198
-
199
- .inner {
200
- margin: 0;
201
- padding: 0;
202
- width: 100%;
203
- max-width: 100%;
204
- }
205
-
206
- .intro-actions .btn {
207
- color: #fff;
208
- background: #000;
209
- }
210
-
211
- .page-break,
212
- .page-break-before {
213
- page-break-before: always;
214
- }
215
-
216
- .page-break-after {
217
- page-break-after: always;
218
- }
219
-
220
- .no-print {
221
- display: none;
222
- }
223
-
224
- a.no-reformat::after {
225
- content: '';
226
- }
227
-
228
- abbr[title].no-reformat::after,
229
- acronym[title].no-reformat::after {
230
- content: '';
231
- }
232
-
233
- .btn {
234
- background: none;
235
- color: #000;
236
- }
237
-
238
- /*
239
- Hide the following elements on print
240
- ========================================================================== */
241
-
242
- .skip-links,
243
- .sidebar-toggle-wrapper,
244
- .sidebar,
245
- .title-area,
246
- .pager,
247
- .site-footer,
248
- .adsbygoogle {
249
- display: none !important;
250
- height: 1px;
251
- }
252
- }
1
+ /* ==========================================================================
2
+ PRINT STYLES
3
+ ========================================================================== */
4
+
5
+ @media print {
6
+
7
+ [hidden] {
8
+ display: none;
9
+ }
10
+
11
+ * {
12
+ -moz-box-sizing: border-box;
13
+ -webkit-box-sizing: border-box;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ html {
18
+ margin: 0;
19
+ padding: 0;
20
+ height: auto;
21
+ min-height: auto !important;
22
+ font-size: 16px;
23
+ }
24
+
25
+ body {
26
+ margin: 0;
27
+ height: auto;
28
+ background: #fff !important;
29
+ color: #000 !important;
30
+ font-size: 1rem;
31
+ line-height: 1.5;
32
+ -moz-osx-font-smoothing: grayscale;
33
+ -webkit-font-smoothing: antialiased;
34
+ text-rendering: optimizeLegibility;
35
+ }
36
+
37
+ h1,
38
+ h2,
39
+ h3,
40
+ h4,
41
+ h5,
42
+ h6 {
43
+ margin-top: 0;
44
+ margin-bottom: 0.75rem;
45
+ color: #000;
46
+ line-height: 1.2;
47
+ }
48
+
49
+ h1 {
50
+ font-size: 2.5rem;
51
+ }
52
+
53
+ h2 {
54
+ font-size: 2rem;
55
+ }
56
+
57
+ h3 {
58
+ font-size: 1.75rem;
59
+ }
60
+
61
+ h4 {
62
+ font-size: 1.5rem;
63
+ }
64
+
65
+ h5 {
66
+ font-size: 1.25rem;
67
+ }
68
+
69
+ h6 {
70
+ font-size: 1rem;
71
+ }
72
+
73
+ a {
74
+ background: none;
75
+ color: #000;
76
+ text-decoration: underline;
77
+ word-wrap: break-word;
78
+ }
79
+
80
+ table {
81
+ border-collapse: collapse;
82
+ }
83
+
84
+ thead {
85
+ display: table-header-group;
86
+ }
87
+
88
+ table,
89
+ th,
90
+ td {
91
+ border-bottom: 1px solid #000;
92
+ }
93
+
94
+ td,
95
+ th {
96
+ padding: 8px 16px;
97
+ }
98
+
99
+ img {
100
+ display: block;
101
+ max-width: 100% !important;
102
+ border: 0;
103
+ vertical-align: middle;
104
+ }
105
+
106
+ hr {
107
+ height: 0;
108
+ margin: 2.25rem 0;
109
+ padding: 0;
110
+ border: 0;
111
+ border-bottom: 2px solid #bbb;
112
+ }
113
+
114
+ dt {
115
+ font-weight: bold;
116
+ }
117
+
118
+ dd {
119
+ margin: 0;
120
+ margin-bottom: 0.75rem;
121
+ }
122
+
123
+ abbr[title],
124
+ acronym[title] {
125
+ border: 0;
126
+ text-decoration: none;
127
+ }
128
+
129
+ table,
130
+ blockquote,
131
+ pre,
132
+ code,
133
+ figure,
134
+ li,
135
+ hr,
136
+ ul,
137
+ ol,
138
+ a,
139
+ tr {
140
+ page-break-inside: avoid;
141
+ }
142
+
143
+ h2,
144
+ h3,
145
+ h4,
146
+ p,
147
+ a {
148
+ orphans: 3;
149
+ widows: 3;
150
+ }
151
+
152
+ h1,
153
+ h2,
154
+ h3,
155
+ h4,
156
+ h5,
157
+ h6 {
158
+ page-break-after: avoid;
159
+ page-break-inside: avoid;
160
+ }
161
+
162
+ h1 + p,
163
+ h2 + p,
164
+ h3 + p {
165
+ page-break-before: avoid;
166
+ }
167
+
168
+ img {
169
+ page-break-after: auto;
170
+ page-break-before: auto;
171
+ page-break-inside: avoid;
172
+ }
173
+
174
+ pre {
175
+ white-space: pre-wrap !important;
176
+ word-wrap: break-word;
177
+ }
178
+
179
+ a[href^='http://']::after,
180
+ a[href^='https://']::after,
181
+ a[href^='ftp://']::after {
182
+ font-size: 80%;
183
+ content: ' (' attr(href) ')';
184
+ }
185
+
186
+ abbr[title]::after,
187
+ acronym[title]::after {
188
+ content: ' (' attr(title) ')';
189
+ }
190
+
191
+ .wrapper {
192
+ min-height: auto !important;
193
+ }
194
+
195
+ #main {
196
+ max-width: 100%;
197
+ }
198
+
199
+ .inner {
200
+ margin: 0;
201
+ padding: 0;
202
+ width: 100%;
203
+ max-width: 100%;
204
+ }
205
+
206
+ .intro-actions .btn {
207
+ color: #fff;
208
+ background: #000;
209
+ }
210
+
211
+ .page-break,
212
+ .page-break-before {
213
+ page-break-before: always;
214
+ }
215
+
216
+ .page-break-after {
217
+ page-break-after: always;
218
+ }
219
+
220
+ .no-print {
221
+ display: none;
222
+ }
223
+
224
+ a.no-reformat::after {
225
+ content: '';
226
+ }
227
+
228
+ abbr[title].no-reformat::after,
229
+ acronym[title].no-reformat::after {
230
+ content: '';
231
+ }
232
+
233
+ .btn {
234
+ background: none;
235
+ color: #000;
236
+ }
237
+
238
+ /*
239
+ Hide the following elements on print
240
+ ========================================================================== */
241
+
242
+ .skip-links,
243
+ .sidebar-toggle-wrapper,
244
+ .sidebar,
245
+ .title-area,
246
+ .pager,
247
+ .site-footer,
248
+ .adsbygoogle {
249
+ display: none !important;
250
+ height: 1px;
251
+ }
252
+ }
@@ -10,11 +10,20 @@
10
10
  max-width: $sidebar-width;
11
11
  height: 100%;
12
12
  z-index: 50;
13
+ visibility: hidden;
14
+ -webkit-transition: visibility 0s 0.3s;
15
+ transition: visibility 0s 0.3s;
13
16
 
14
17
  @include breakpoint($large) {
15
18
  max-width: (1.5 * $sidebar-width);
16
19
  }
17
20
 
21
+ &.is--visible {
22
+ visibility: visible;
23
+ -webkit-transition: visibility 0s 0s;
24
+ transition: visibility 0s 0s;
25
+ }
26
+
18
27
  li {
19
28
  transform: translateX(-1rem);
20
29
  transition: all 0.5s;
@@ -2,7 +2,7 @@
2
2
  ---
3
3
 
4
4
  /*!
5
- * Basically Basic Jekyll Theme 1.1.2
5
+ * Basically Basic Jekyll Theme 1.1.3
6
6
  * Copyright 2017 Michael Rose - mademistakes | @mmistakes
7
7
  * Free for personal and commercial use under the MIT license
8
8
  * https://github.com/mmistakes/jekyll-basically-theme/blob/master/LICENSE.md
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-basically-basic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rose
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-14 00:00:00.000000000 Z
11
+ date: 2017-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll