Fix slider CSS

This commit is contained in:
Lieu Le 2019-12-13 11:25:29 +07:00
parent 0d684de85a
commit 9b8e62f36c
3 changed files with 25 additions and 4 deletions

@ -2665,6 +2665,11 @@ header:hover .property-bg-thumbnail a {
background: #02ce76; background: #02ce76;
color: #FFF; } color: #FFF; }
.opalesate-property-collection .elementor-slick-slider-row.slick-arrows-inside .slick-arrow {
top: 50% !important; }
.opalesate-property-collection .elementor-slick-slider-row.slick-arrows-inside .slick-arrow.slick-prev {
left: 0; }
.opalestate_agency { .opalestate_agency {
margin-bottom: 30px; } margin-bottom: 30px; }
@ -3997,7 +4002,3 @@ header#masthead {
background: #2f73e9; background: #2f73e9;
position: absolute; position: absolute;
top: 0; } top: 0; }
.opalestate-notice {
padding: 10px;
}

@ -651,3 +651,22 @@ header{
} }
} }
} }
.opalesate-property-collection {
.elementor-slick-slider-row {
&.slick-arrows-default {}
&.slick-arrows-outside {
.slick-arrow {
}
}
&.slick-arrows-inside {
.slick-arrow {
top: 50% !important;
&.slick-prev {
left:0;
}
}
}
}
}

@ -356,6 +356,7 @@ abstract class Opalestate_Elementor_Widget_Base extends Widget_Base {
'type' => Controls_Manager::SELECT, 'type' => Controls_Manager::SELECT,
'default' => 'inside', 'default' => 'inside',
'options' => [ 'options' => [
'default' => esc_html__( 'Default', 'opalestate-pro' ),
'inside' => esc_html__( 'Inside', 'opalestate-pro' ), 'inside' => esc_html__( 'Inside', 'opalestate-pro' ),
'outside' => esc_html__( 'Outside', 'opalestate-pro' ), 'outside' => esc_html__( 'Outside', 'opalestate-pro' ),
], ],