Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
KingYes committed Jul 4, 2017
2 parents 8cc3374 + 9c2fdb0 commit 971c8cb
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 24 deletions.
9 changes: 6 additions & 3 deletions assets/css/editor-preview-rtl.css

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

2 changes: 1 addition & 1 deletion assets/css/editor-preview-rtl.min.css

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions assets/css/editor-preview.css

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

2 changes: 1 addition & 1 deletion assets/css/editor-preview.min.css

Large diffs are not rendered by default.

39 changes: 25 additions & 14 deletions assets/dev/scss/editor/_compatibility.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,35 @@

body.elementor-editor-active {

// Hack for pojo.me themes
&.layout-section {
.elementor {

.entry-content {
overflow: visible;
}
}
&.elementor-edit-mode {

// Hack for bluchic.com themes
.article {
overflow: visible;
}
// Hack for pojo.me themes
&.layout-section {

.entry-content {
overflow: visible;
}
}

// Hack for bluchic.com themes
.article {
overflow: visible;
}

// Hack for Zerif Pro theme
.elementor-element-overlay {

// Hack for Zerif Pro theme
.elementor-element-overlay {
.elementor-editor-element-settings {
clear: unset;
}
}

.elementor-editor-element-settings {
clear: unset;
// Hack for some stupid themes
.elementor-element.elementor-section {
overflow: visible;
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion includes/elements/column.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ protected function _register_controls() {
'nav',
];

$options = [ '' => __( 'Default', '' ) ] + array_combine( $possible_tags, $possible_tags );
$options = [ '' => __( 'Default', 'elementor' ) ] + array_combine( $possible_tags, $possible_tags );

$this->add_control(
'html_tag',
Expand Down
2 changes: 1 addition & 1 deletion includes/elements/section.php
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ protected function _register_controls() {
'div',
];

$options = [ '' => __( 'Default', '' ) ] + array_combine( $possible_tags, $possible_tags );
$options = [ '' => __( 'Default', 'elementor' ) ] + array_combine( $possible_tags, $possible_tags );

$this->add_control(
'html_tag',
Expand Down

0 comments on commit 971c8cb

Please sign in to comment.