diff --git a/assets/images/.DS_Store b/assets/images/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/assets/images/.DS_Store differ diff --git a/assets/images/icon-01.png b/assets/images/icon-01.png deleted file mode 100644 index 738ccd8d..00000000 Binary files a/assets/images/icon-01.png and /dev/null differ diff --git a/assets/opalestate.css b/assets/opalestate.css index 87975552..6e5becb5 100755 --- a/assets/opalestate.css +++ b/assets/opalestate.css @@ -3855,7 +3855,8 @@ header#masthead { .card-item .opalestate-admin-box { box-shadow: none; } .card-item.dash-widget { - padding: 40px; } + padding: 40px; + position: relative; } .card-item.dash-widget h5 { text-align: left; color: #FFF; @@ -3863,11 +3864,17 @@ header#masthead { margin: 0; } .card-item.dash-widget .heading { border: 0; - color: #FFF; margin: 0; - padding: 0; } + padding: 0; + color: #FFF; } .card-item.dash-widget .heading span { color: #FFF; } + .card-item.dash-widget .dash-widget-icon { + position: absolute; + top: 15px; + right: 30px; + color: rgba(255, 255, 255, 0.1); + font-size: 75px; } .card-item.dash-widget.dash-published-listings { background-color: #2f73e9; } .card-item.dash-widget.dash-featured-listings { diff --git a/assets/scss/opalestate/_dashboard.scss b/assets/scss/opalestate/_dashboard.scss index 840eb406..f9fa621f 100755 --- a/assets/scss/opalestate/_dashboard.scss +++ b/assets/scss/opalestate/_dashboard.scss @@ -272,8 +272,10 @@ .opalestate-admin-box { box-shadow: none; } + &.dash-widget { padding: 40px; + position: relative; h5 { text-align: left; color: $white; @@ -282,12 +284,20 @@ } .heading { border:0; + margin: 0; + padding:0; color: $white; - margin: 0; padding:0; span { color: $white; } } + .dash-widget-icon { + position: absolute; + top:$grid-gutter-width/2; + right:$grid-gutter-width; + color: rgba(255,255,255,0.1); + font-size:75px; + } &.dash-published-listings { background-color: $primary; }