Skip to content

Commit 13ea967

Browse files
committed
Merge branch 'release/1.10.1'
2 parents dfacb71 + 882e0b5 commit 13ea967

File tree

6 files changed

+97
-4
lines changed

6 files changed

+97
-4
lines changed

inc/settings.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ function origami_settings_init(){
2424
$settings = SiteOrigin_Settings::single();
2525

2626
$settings->add_section('text', __('Text', 'origami'));
27-
$settings->add_field('text', 'copyright', 'text', __('Copyright', 'origami'));
27+
$settings->add_field('text', 'copyright', 'text', __('Copyright', 'origami'), array(
28+
'sanitize_callback' => 'wp_kses_post',
29+
));
2830
$settings->add_field('text', 'not_found', 'text', __('404 Message', 'origami'));
2931
$settings->add_field('text', 'no_results', 'text', __('No Search Results', 'origami'));
3032

readme.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: siteorigin
44

55
Tags: blog, photography, portfolio, one-column, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, sticky-post, theme-options, threaded-comments, translation-ready
66

7-
Tested up to: 5.9
7+
Tested up to: 6.0
88
Requires at least: 4.7
99
Requires PHP: 5.6.20
1010
License: GPLv2 or later
@@ -93,6 +93,11 @@ This theme makes use of the [SiteOrigin Settings Framework](https://github.com/s
9393

9494
== Changelog ==
9595

96+
= 1.10.1 - 15 August 2022 =
97+
* Calendar Widget: Updated styling for new markup.
98+
* Allowed HTML in Copyright Text field.
99+
* Updated SiteOrigin Settings framework.
100+
96101
= 1.10.0 - 23 January 2022 =
97102
* Added pagination to the `loop.php` Post Loop Widget template.
98103
* Updated SiteOrigin Settings framework.

scss/_widgets.scss

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,61 @@
137137
}
138138
}
139139

140+
/**
141+
* #.# Calendar Widget
142+
*/
143+
144+
.widget #wp-calendar {
145+
border: 0;
146+
line-height: 1.7333;
147+
margin: 0;
148+
width: 100%;
149+
150+
caption {
151+
color: #505050;
152+
font-weight: bold;
153+
text-align: left;
154+
}
155+
156+
tr:nth-child(2n+2) {
157+
background: none;
158+
}
159+
160+
th,
161+
td {
162+
border: 0;
163+
padding: 0;
164+
}
165+
166+
thead {
167+
168+
tr {
169+
background: none;
170+
}
171+
172+
th {
173+
padding: 8px 0;
174+
text-align: center;
175+
}
176+
}
177+
178+
tbody {
179+
180+
.pad {
181+
background: none;
182+
}
183+
184+
tr:first-of-type td {
185+
padding-top: 8px;
186+
}
187+
188+
td {
189+
padding-bottom: 8px;
190+
text-align: center;
191+
}
192+
}
193+
}
194+
140195
.widget img {
141196
max-width: 100%;
142197
height: auto;

scss/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Author URI: https://siteorigin.com/
55
Theme URI: https://siteorigin.com/theme/origami
66
Description: Origami is a simple, responsive media blogging theme that places strong emphasis on your content. It looks great on mobile devices, even the videos and galleries scale to fit small screens. The options panel is easy to understand with a minimal set of options. Origami includes a powerful drag and drop page builder for creating unlimited page layouts. So you can use Origami as a standard photography blog or a complete business website. We offer free and premium support on our support <a href="https://siteorigin.com/thread/">forums</a> (https://siteorigin.com/thread/).
77
Version: dev
8-
Tested up to: 5.8
8+
Tested up to: 6.0
99
Requires at least: 4.7
1010
Requires PHP: 5.6.20
1111
License: GNU General Public License v2 or later

style.css

Lines changed: 31 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)