Skip to content

Commit

Permalink
Merge branch 'release/1.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Misplon committed Nov 2, 2021
2 parents 70303e5 + bf7b9ee commit 14dd8e6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions css/admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,7 @@
.custom-css-toolbar .socss-button.save,
#so-custom-css-properties .toolbar .socss-button.save {
border-color: #dcdcde;
border-radius: 0;
height: 30px;
width: 30px;
}
Expand Down
1 change: 1 addition & 0 deletions css/admin.less
Original file line number Diff line number Diff line change
Expand Up @@ -913,6 +913,7 @@

&.save {
border-color: #dcdcde;
border-radius: 0;
height: 30px;
width: 30px;

Expand Down
2 changes: 1 addition & 1 deletion js/inspector.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
// Setup the click event
var wcCheck = $( '.single-product' ).length;
$('body *').on( 'click', function( e ) {
if ( ! thisView.active || thisView.$el[0] == e.target ) {
if ( ! thisView.active || $( e.target ).parent( '.socss-link' ).length ) {
return true;
}

Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ SiteOrigin Premium includes access to our professional email support service, pe

== Changelog ==

= 1.4.1 - 02 November 2021 =
* Removed Save button rounding.
* Fixed Visual Editor `Navigate To` link functionality.

= 1.4.0 - 11 October 2021 =
* Added Ajax saving. Users can now save in the expanded and visual editors without exiting to basic editor.
* Expanded/Visual toolbar buttons re-ordered for consistency between modes.
Expand Down

0 comments on commit 14dd8e6

Please sign in to comment.