update
This commit is contained in:
parent
f8439ec72e
commit
9f591b9bf0
BIN
assets/images/icon-01.png
Normal file
BIN
assets/images/icon-01.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
@ -3639,7 +3639,12 @@ header#masthead {
|
|||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
background-color: #FFF;
|
background-color: #FFF;
|
||||||
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1); }
|
box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||||||
|
border-radius: 5px;
|
||||||
|
-webkit-border-radius: 5px;
|
||||||
|
-moz-border-radius: 5px;
|
||||||
|
-ms-border-radius: 5px;
|
||||||
|
-o-border-radius: 5px; }
|
||||||
.opalestate-admin-box h3 {
|
.opalestate-admin-box h3 {
|
||||||
border-bottom: 1px #ebebeb solid;
|
border-bottom: 1px #ebebeb solid;
|
||||||
padding-bottom: 15px;
|
padding-bottom: 15px;
|
||||||
@ -3812,9 +3817,6 @@ header#masthead {
|
|||||||
.page-template-user-management .cmb2-wrap input, .page-template-user-management .cmb2-wrap textarea {
|
.page-template-user-management .cmb2-wrap input, .page-template-user-management .cmb2-wrap textarea {
|
||||||
min-width: 500px; } }
|
min-width: 500px; } }
|
||||||
|
|
||||||
.dash-widget {
|
|
||||||
background-color: #2f73e9; }
|
|
||||||
|
|
||||||
.card-item {
|
.card-item {
|
||||||
background-color: #FFF;
|
background-color: #FFF;
|
||||||
box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||||||
@ -3852,6 +3854,26 @@ header#masthead {
|
|||||||
text-align: center; }
|
text-align: center; }
|
||||||
.card-item .opalestate-admin-box {
|
.card-item .opalestate-admin-box {
|
||||||
box-shadow: none; }
|
box-shadow: none; }
|
||||||
|
.card-item.dash-widget {
|
||||||
|
padding: 40px; }
|
||||||
|
.card-item.dash-widget h5 {
|
||||||
|
text-align: left;
|
||||||
|
color: #FFF;
|
||||||
|
font-size: 48px;
|
||||||
|
margin: 0; }
|
||||||
|
.card-item.dash-widget .heading {
|
||||||
|
border: 0;
|
||||||
|
color: #FFF;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0; }
|
||||||
|
.card-item.dash-widget .heading span {
|
||||||
|
color: #FFF; }
|
||||||
|
.card-item.dash-widget.dash-published-listings {
|
||||||
|
background-color: #2f73e9; }
|
||||||
|
.card-item.dash-widget.dash-featured-listings {
|
||||||
|
background-color: #912dfe; }
|
||||||
|
.card-item.dash-widget.dash-pending-listings {
|
||||||
|
background-color: #2f73e9; }
|
||||||
|
|
||||||
.opalestate-user-management {
|
.opalestate-user-management {
|
||||||
min-height: 742px; }
|
min-height: 742px; }
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
margin-bottom:$grid-gutter-width;
|
margin-bottom:$grid-gutter-width;
|
||||||
padding: $grid-gutter-width;
|
padding: $grid-gutter-width;
|
||||||
background-color: $white;
|
background-color: $white;
|
||||||
box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
|
box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||||||
|
@include border-radius(5px);
|
||||||
h3 {
|
h3 {
|
||||||
border-bottom:1px $border-color solid;
|
border-bottom:1px $border-color solid;
|
||||||
padding-bottom:15px;
|
padding-bottom:15px;
|
||||||
@ -234,9 +235,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.dash-widget {
|
|
||||||
background-color: $primary;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-item {
|
.card-item {
|
||||||
background-color:$white;
|
background-color:$white;
|
||||||
@ -274,6 +272,32 @@
|
|||||||
.opalestate-admin-box {
|
.opalestate-admin-box {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
&.dash-widget {
|
||||||
|
padding: 40px;
|
||||||
|
h5 {
|
||||||
|
text-align: left;
|
||||||
|
color: $white;
|
||||||
|
font-size: 48px;
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
.heading {
|
||||||
|
border:0;
|
||||||
|
color: $white;
|
||||||
|
margin: 0; padding:0;
|
||||||
|
span {
|
||||||
|
color: $white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.dash-published-listings {
|
||||||
|
background-color: $primary;
|
||||||
|
}
|
||||||
|
&.dash-featured-listings {
|
||||||
|
background-color: #912dfe;
|
||||||
|
}
|
||||||
|
&.dash-pending-listings {
|
||||||
|
background-color: $primary;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.opalestate-user-management {
|
.opalestate-user-management {
|
||||||
|
Loading…
Reference in New Issue
Block a user