Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/2175' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
manzurahammed committed Jul 4, 2022
2 parents 90c756a + c12748b commit 6f1ffe1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions assets/front-end/css/view/interactive-circle.css
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,8 @@
}
@media only screen and (max-width: 600px) {
.eael-circle-wrapper.eael-interactive-circle-preset-2 .eael-circle-info .eael-circle-inner {
width: 100%;
height: auto;
width: 100% !important;
height: auto !important;
}
}
.eael-circle-wrapper.eael-interactive-circle-preset-2 .eael-circle-info .eael-circle-inner .eael-circle-item .eael-circle-btn {
Expand Down Expand Up @@ -762,7 +762,7 @@
}
@media only screen and (max-width: 600px) {
.eael-circle-wrapper.eael-interactive-circle-preset-2 .eael-circle-info .eael-circle-inner .eael-circle-item .eael-circle-btn-content {
width: 100%;
width: 100% !important;
-webkit-transform: none;
-ms-transform: none;
transform: none;
Expand Down
1 change: 0 additions & 1 deletion assets/front-end/css/view/interactive-circle.min.css

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions includes/Elements/Interactive_Circle.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,9 +322,10 @@ protected function eael_interactive_circle_general_style() {
'selectors' => [
'{{WRAPPER}} .eael-circle-inner' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}};',
'{{WRAPPER}} .eael-interactive-circle-preset-2 .eael-circle-inner' => 'width: {{SIZE}}{{UNIT}}; height: calc({{SIZE}}{{UNIT}} / 2);',
'{{WRAPPER}} .eael-interactive-circle-preset-2 .eael-circle-content' => 'height: calc({{SIZE}}{{UNIT}} / 2)!important;',
'{{WRAPPER}} .eael-interactive-circle-preset-2 .eael-circle-btn-content' => 'height: calc({{SIZE}}{{UNIT}} / 2)!important;',
'{{WRAPPER}} .eael-interactive-circle-preset-2 .eael-circle-content' => 'height: calc({{SIZE}}{{UNIT}} / 2);',
'{{WRAPPER}} .eael-interactive-circle-preset-2 .eael-circle-btn-content' => 'height: calc({{SIZE}}{{UNIT}} / 2);',
],
'devices' => [ 'desktop', 'tablet' ],
]
);

Expand Down
6 changes: 3 additions & 3 deletions src/css/view/interactive-circle.scss
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,8 @@
border-bottom: none!important;

@media only screen and (max-width: $breakpoint) {
width: 100%;
height: auto;
width: 100% !important;
height: auto !important;
}

.eael-circle-item {
Expand Down Expand Up @@ -724,7 +724,7 @@
padding: $nav-circle-border-width;
padding-bottom: 0;
@media only screen and (max-width: $breakpoint) {
width: 100%;
width: 100% !important;
transform: none;
bottom: 0;
margin-top: 20px;
Expand Down

0 comments on commit 6f1ffe1

Please sign in to comment.