Skip to content

Commit 8f301a5

Browse files
committed
4.9.1-dev
And silenced some build warnings.
1 parent 6002ca0 commit 8f301a5

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

dist/four-point-nine/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"description": "The default theme shipped with Textpattern CMS 4.9.",
55
"author": "Team Textpattern",
66
"author_uri": "https://github.com/textpattern/textpattern-default-theme",
7-
"version": "4.9.0"
7+
"version": "4.9.1-dev"
88
}

dist/four-point-nine/styles/default.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "textpattern-default-theme",
33
"title": "Default theme",
44
"txp-type": "textpattern-theme",
5-
"version": "4.9.0",
5+
"version": "4.9.1-dev",
66
"description": "The default theme that ships as standard with Textpattern CMS.",
77
"author": "Team Textpattern",
88
"homepage": "https://github.com/textpattern/textpattern-default-theme",

src/scss/modules/_comments.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
.comments {
1717
margin-bottom: 1em;
1818
padding: 1px 1em;
19+
overflow-wrap: break-word;
1920
border-radius: settings.$border-radius;
2021
background: colours.$color-background-box;
21-
overflow-wrap: break-word;
2222

2323
h4 {
2424
.is-author {

src/scss/modules/_layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ body {
118118
.complementary-content {
119119
margin: 2em -6% 0;
120120
padding: 0 6%;
121-
border-top: 2px dashed colours.$color-border;
122121
/* 1 */
123122
overflow-wrap: break-word;
123+
border-top: 2px dashed colours.$color-border;
124124
}
125125

126126
/**

src/scss/modules/_typography.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,29 +166,29 @@ samp {
166166
/**
167167
* Additional stylng for preformatted text/code.
168168
*
169-
* 1. Contain overflow in all browsers.
170-
* 2. Don't wrap long words.
169+
* 1. Don't wrap long words.
170+
* 2. Contain overflow in all browsers.
171171
* 3. Set tab size to 4 spaces.
172172
*/
173173

174174
pre {
175175
padding: 0.5714286em 1.1428571em; // 8px / 14px + 16px / 14px
176176
/* 1 */
177-
overflow-x: auto;
178-
/* 2 */
179177
overflow-wrap: normal;
178+
/* 2 */
179+
overflow-x: auto;
180180
/* 3 */
181181
tab-size: 4;
182182

183183
code {
184184
padding: 0;
185+
overflow-wrap: normal;
185186
border: 0;
186187
background-color: transparent;
187188
direction: ltr;
188189
font-size: 1em;
189190
hyphens: none;
190191
text-align: left;
191-
overflow-wrap: normal;
192192
word-break: normal;
193193
word-spacing: normal;
194194
white-space: pre;

0 commit comments

Comments
 (0)