Skip to content

Commit

Permalink
Merge branch 'release/1.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Misplon committed Aug 15, 2022
2 parents dfacb71 + 882e0b5 commit 13ea967
Show file tree
Hide file tree
Showing 6 changed files with 97 additions and 4 deletions.
4 changes: 3 additions & 1 deletion inc/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ function origami_settings_init(){
$settings = SiteOrigin_Settings::single();

$settings->add_section('text', __('Text', 'origami'));
$settings->add_field('text', 'copyright', 'text', __('Copyright', 'origami'));
$settings->add_field('text', 'copyright', 'text', __('Copyright', 'origami'), array(
'sanitize_callback' => 'wp_kses_post',
));
$settings->add_field('text', 'not_found', 'text', __('404 Message', 'origami'));
$settings->add_field('text', 'no_results', 'text', __('No Search Results', 'origami'));

Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: siteorigin

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

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

== Changelog ==

= 1.10.1 - 15 August 2022 =
* Calendar Widget: Updated styling for new markup.
* Allowed HTML in Copyright Text field.
* Updated SiteOrigin Settings framework.

= 1.10.0 - 23 January 2022 =
* Added pagination to the `loop.php` Post Loop Widget template.
* Updated SiteOrigin Settings framework.
Expand Down
55 changes: 55 additions & 0 deletions scss/_widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,61 @@
}
}

/**
* #.# Calendar Widget
*/

.widget #wp-calendar {
border: 0;
line-height: 1.7333;
margin: 0;
width: 100%;

caption {
color: #505050;
font-weight: bold;
text-align: left;
}

tr:nth-child(2n+2) {
background: none;
}

th,
td {
border: 0;
padding: 0;
}

thead {

tr {
background: none;
}

th {
padding: 8px 0;
text-align: center;
}
}

tbody {

.pad {
background: none;
}

tr:first-of-type td {
padding-top: 8px;
}

td {
padding-bottom: 8px;
text-align: center;
}
}
}

.widget img {
max-width: 100%;
height: auto;
Expand Down
2 changes: 1 addition & 1 deletion scss/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Author URI: https://siteorigin.com/
Theme URI: https://siteorigin.com/theme/origami
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/).
Version: dev
Tested up to: 5.8
Tested up to: 6.0
Requires at least: 4.7
Requires PHP: 5.6.20
License: GNU General Public License v2 or later
Expand Down
31 changes: 31 additions & 0 deletions style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 13ea967

Please sign in to comment.