This commit is contained in:
ThemeLexus
2019-09-28 16:41:11 +07:00
47 changed files with 210 additions and 7723 deletions

View File

@@ -49,7 +49,8 @@
}
.uploader-item-preview .btn-close::before {
content: '\f00d';
font-family: Fontawesome;
font-family: "Font Awesome 5 Free";
transition: all .3s ease-in-out;
}
.uploader-item-preview .preview-icon {

View File

@@ -547,7 +547,7 @@ span.cmb2-metabox-description {
}
.opalestate-submission-form .btn-submit-cmb::before {
content: "\f138";
font-family: Fontawesome;
font-family: "Font Awesome 5 Free";
margin-right: 18px;
padding-right: 20px;
}

View File

@@ -2349,39 +2349,6 @@ ul.property-meta-list {
display: inline-block;
font-style: unset; }
i[class*="icon-property-"] {
font-family: "Font Awesome 5 Free"; }
.icon-property-areasize:before {
content: "\f047"; }
.icon-property-bedrooms:before {
content: "\f236"; }
.icon-property-bathrooms:before {
content: "\f2cd"; }
.icon-property-parking:before {
content: "\f1b9"; }
.icon-property-builtyear:before {
content: "\f073"; }
.icon-property-plotsize:before {
content: "\f278"; }
.icon-property-orientation:before {
content: "\f14e"; }
.icon-property-livingrooms:before {
content: "\f26c"; }
.icon-property-kitchens:before {
content: "\f0f5"; }
.icon-property-amountrooms:before {
content: "\f1ad"; }
/** Grid **/
.property-grid .entry-content {
padding: 0 20px 15px; }
@@ -2900,9 +2867,11 @@ ul.property-status {
line-height: 1; }
.opalestate-rating__stars::before {
font-family: "Font Awesome 5 Free";
font-weight: 400;
font-size: inherit;
text-rendering: auto;
content: "\f005\f005\f005\f005\f005";
font-weight: 400;
opacity: 0.5;
position: absolute;
top: 0;
@@ -2919,6 +2888,7 @@ ul.property-status {
font-size: inherit;
text-rendering: auto;
content: "\f005\f005\f005\f005\f005";
font-weight: 400;
color: #f6be15;
position: absolute;
top: 0;
@@ -2941,21 +2911,27 @@ p.stars a {
height: 1em;
line-height: 1;
font-family: "Font Awesome 5 Free";
content: "\f006";
font-weight: 400;
content: "\f005";
text-indent: 0; }
p.stars a:hover ~ a::before {
content: "\f006"; }
content: "\f005";
font-weight: 400; }
p.stars:hover a::before {
content: '\f005'; }
content: '\f005';
font-weight: 900; }
p.stars.selected a.active::before {
font-weight: 900;
content: '\f005'; }
p.stars.selected a.active ~ a::before {
content: '\f006'; }
font-weight: 400;
content: '\f005'; }
p.stars.selected a:not(.active)::before {
font-weight: 900;
content: '\f005'; }
.opalestate-mortgage-chart-svg {

View File

@@ -1,6 +1,7 @@
// Functions
// --------------------------------------------------
// Position mixin
//==========================================
// @param [string] $position: position type

View File

@@ -99,12 +99,13 @@ ul.property-status{
font-size: $font-size-base;
width: calc(#{$font-size-base}*5 - 5px);
line-height: 1;
&::before{
font-family:$font-family-icon;
font-weight: 400;
font-size: inherit;
text-rendering: auto;
content: "\f005\f005\f005\f005\f005";
font-weight: 400;
opacity: 0.5;
position: absolute;
top: 0;
@@ -122,6 +123,7 @@ ul.property-status{
font-size: inherit;
text-rendering: auto;
content: "\f005\f005\f005\f005\f005";
font-weight: 400;
color: #f6be15;
position: absolute;
top: 0;
@@ -138,7 +140,6 @@ p.stars {
text-indent: -999em;
display: inline-block;
text-decoration: none;
&::before {
display: block;
position: absolute;
@@ -148,14 +149,15 @@ p.stars {
height: 1em;
line-height: 1;
font-family: $font-family-icon;
content: "\f006";
font-weight: 400;
content: "\f005";
text-indent: 0;
}
&:hover {
~ a::before {
content: "\f006";
content: "\f005";
font-weight: 400;
}
}
}
@@ -163,8 +165,8 @@ p.stars {
&:hover {
a {
&::before {
content: '\f005';
font-weight: 900;
}
}
}
@@ -172,19 +174,19 @@ p.stars {
&.selected {
a.active {
&::before {
font-weight: 900;
content: '\f005';
}
~ a::before {
content: '\f006';
font-weight:400;
content: '\f005';
}
}
a:not( .active ) {
a:not(.active ) {
&::before {
font-weight: 900;
content: '\f005';
}
}

View File

@@ -237,49 +237,6 @@ ul.property-meta-list{
font-style: unset;
}
}
i[class*="icon-property-"]{
font-family: $font-family-icon;
}
.icon-property-areasize:before{
content: "\f047";
}
.icon-property-bedrooms:before{
content: "\f236";
}
.icon-property-bathrooms:before{
content: "\f2cd";
}
.icon-property-parking:before{
content: "\f1b9";
}
.icon-property-builtyear:before{
content: "\f073";
}
.icon-property-plotsize:before{
content: "\f278";
}
.icon-property-orientation:before{
content: "\f14e";
}
.icon-property-livingrooms:before{
content: "\f26c";
}
.icon-property-kitchens:before{
content: "\f0f5";
}
.icon-property-amountrooms:before{
content: "\f1ad";
}
/** Grid **/
.property-grid{