Skip to content

Commit e43d7b9

Browse files
committed
Fixes
1 parent 4ec9a5d commit e43d7b9

13 files changed

+16
-305
lines changed

src/assets/sass/modules/_forms.scss

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -480,25 +480,14 @@ input {
480480
color: $color-warning-text;
481481
}
482482

483-
label.comRequired,
484-
label.comRequirederrorElement {
485-
&::after {
486-
color: $color-warning-text;
487-
content: "\00A0" "\25CF";
488-
}
489-
}
490-
491483
/**
492484
* Styling for form field validation.
493485
*/
494486

495487
input,
496488
select,
497489
textarea {
498-
&:focus:invalid,
499-
&.errorElement,
500-
&.comRequirederrorElement,
501-
&.comments_error {
490+
&:focus:invalid {
502491
border-color: $color-error-text;
503492
box-shadow: none; // Normalize Firefox styling
504493
}

src/assets/sass/modules/_grid.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
.layout-container {
1010
display: grid;
1111
grid-template-columns: repeat(12, 1fr);
12-
grid-gap: 2em;
12+
grid-gap: 0 2em;
1313
}
1414

1515
/**

src/assets/sass/modules/_icons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
//.ui-extra-icon-code { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='m7 5-2-2-5 5 5 5 2-2-3-3zm2 6 2 2 5-5-5-5-2 2 3 3z'/%3E%3C/svg%3E"); }
231231
//.ui-extra-icon-list { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='M5 3h10v1H5zM5 6h10v1H5zM5 9h10v1H5zM5 12h10v1H5zM1 2h2v2H1zM1 5h2v2H1zM1 8h2v2H1zM1 11h2v2H1z'/%3E%3C/svg%3E"); }
232232
//.ui-extra-icon-grid { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='%23333'%3E%3Cpath d='M0 3h16v1H0zM0 6h16v1H0zM0 9h16v1H0zM0 12h16v1H0z'/%3E%3Cpath d='M0 3h1v10H0zM3 3h1v10H3zM6 3h1v10H6zM9 3h1v10H9zM12 3h1v10h-1zM15 3h1v10h-1z'/%3E%3C/g%3E%3C/svg%3E"); }
233-
//.ui-extra-icon-download { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='%23333'%3E%3Cpath d='M10 10h3V2H3v8h3v2H1V0h14v12h-5z'/%3E%3Cpath d='M8 16l3-3H9V6H7v7H5z'/%3E%3C/g%3E%3C/svg%3E"); }
233+
.ui-extra-icon-download { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='%23333'%3E%3Cpath d='M10 10h3V2H3v8h3v2H1V0h14v12h-5z'/%3E%3Cpath d='M8 16l3-3H9V6H7v7H5z'/%3E%3C/g%3E%3C/svg%3E"); }
234234
//.ui-extra-icon-upload { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='%23333'%3E%3Cpath d='M10 10h3V2H3v8h3v2H1V0h14v12h-5z'/%3E%3Cpath d='M8 6L5 9h2v7h2V9h2z'/%3E%3C/g%3E%3C/svg%3E"); }
235235
//.ui-extra-icon-attach { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333' stroke-miterlimit='10' d='M1.5 6.5L9 14c1 1 3.03 1.529 4.5 0 1.482-1.544 1-3.5 0-4.5L5.5 2C4.469.928 3 .5 2 1.5S1.5 4 2.5 5l7.5 7.5c.5.5 1.5.5 2 0s.5-1.5 0-2l-7.5-7'/%3E%3C/svg%3E"); }
236236
//.ui-extra-icon-new-document { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='%23333'%3E%3Cpath d='M11 12v2h-1v-3h3v1zM1 7h6v2H1z'/%3E%3Cpath d='M3 5h2v6H3z'/%3E%3Cpath d='M4 1v3h1V2h8v10l-2 2H5v-2H4v3h7l3-3V1z'/%3E%3C/g%3E%3C/svg%3E"); }

src/assets/sass/modules/_responsive.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,8 @@
405405
*/
406406

407407
.sidebar {
408-
padding-top: 1em;
408+
margin: 0 -1em;
409+
padding: 1em;
409410
border-top: 0;
410411
background-color: $color-background-box;
411412
}

src/mockups/blog-article.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ <h4 class="accessibility">Host details</h4>
444444
<footer class="site-footer">
445445
<p class="legal">
446446
Copyright 2004–2018 The Textpattern Development Team.
447-
<a href="contact.html">Contact us</a>.
447+
<a href="https://textpattern.com/contact">Contact us</a>.
448448
<a href="https://textpattern.com/privacy">Privacy</a>.
449449
<a href="https://textpattern.com/humans.txt">Colophon</a>.
450450
Textpattern is both free and open source. <a href="https://textpattern.com/license">GPLv2 license</a>.

src/mockups/blog-landing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ <h4 class="accessibility">Host details</h4>
425425
<footer class="site-footer">
426426
<p class="legal">
427427
Copyright 2004–2018 The Textpattern Development Team.
428-
<a href="contact.html">Contact us</a>.
428+
<a href="https://textpattern.com/contact">Contact us</a>.
429429
<a href="https://textpattern.com/privacy">Privacy</a>.
430430
<a href="https://textpattern.com/humans.txt">Colophon</a>.
431431
Textpattern is both free and open source. <a href="https://textpattern.com/license">GPLv2 license</a>.

src/mockups/contact.html

Lines changed: 0 additions & 279 deletions
This file was deleted.

src/mockups/documentation-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ <h4 class="accessibility">Host details</h4>
384384
<footer class="site-footer">
385385
<p class="legal">
386386
Copyright 2004–2018 The Textpattern Development Team.
387-
<a href="contact.html">Contact us</a>.
387+
<a href="https://textpattern.com/contact">Contact us</a>.
388388
<a href="https://textpattern.com/privacy">Privacy</a>.
389389
<a href="https://textpattern.com/humans.txt">Colophon</a>.
390390
Textpattern is both free and open source. <a href="https://textpattern.com/license">GPLv2 license</a>.

src/mockups/error.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ <h4 class="accessibility">Host details</h4>
137137
<footer class="site-footer">
138138
<p class="legal">
139139
Copyright 2004–2018 The Textpattern Development Team.
140-
<a href="contact.html">Contact us</a>.
140+
<a href="https://textpattern.com/contact">Contact us</a>.
141141
<a href="https://textpattern.com/privacy">Privacy</a>.
142142
<a href="https://textpattern.com/humans.txt">Colophon</a>.
143143
Textpattern is both free and open source. <a href="https://textpattern.com/license">GPLv2 license</a>.

src/mockups/get-started.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ <h4 class="accessibility">Host details</h4>
358358
<footer class="site-footer">
359359
<p class="legal">
360360
Copyright 2004–2018 The Textpattern Development Team.
361-
<a href="contact.html">Contact us</a>.
361+
<a href="https://textpattern.com/contact">Contact us</a>.
362362
<a href="https://textpattern.com/privacy">Privacy</a>.
363363
<a href="https://textpattern.com/humans.txt">Colophon</a>.
364364
Textpattern is both free and open source. <a href="https://textpattern.com/license">GPLv2 license</a>.

0 commit comments

Comments
 (0)