forked from akveo/blur-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix basic layout, slice popular app panel, fix to-do
- Loading branch information
1 parent
7a26ed4
commit 1ab60bd
Showing
21 changed files
with
137 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
@media screen and (min-width: 1200px) { | ||
.row.shift-up { | ||
> div { | ||
margin-top: -423px; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#amchart { | ||
width: 100%; | ||
height: 400px; | ||
height: 350px; | ||
margin-top: -20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#amChartMap { | ||
width: 100%; | ||
height: 400px; | ||
height: 315px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
.blur-feed { | ||
height: 983px; | ||
} | ||
|
||
.feed-message { | ||
$text-message-color: $default; | ||
$video-message-color: $danger; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
<div class="blur-feed"> | ||
<div class="feed-message" ng-repeat="message in feed" ng-class="{'left': $index%2==0, 'right': $index%2==1}"> | ||
<img ng-src="img/{{ ::message.author }}.png"> | ||
<div class="text-block" ng-class="message.type"> | ||
<div class="message-header"> | ||
<span class="author">{{ ::message.author }}</span>{{ ::message.header }} | ||
</div> | ||
<div class="message-content"> | ||
{{::message.text}} | ||
</div> | ||
<div class="feed-message" ng-repeat="message in feed" ng-class="{'left': $index%2==0, 'right': $index%2==1}"> | ||
<img ng-src="img/{{ ::message.author }}.png"> | ||
<div class="text-block" ng-class="message.type"> | ||
<div class="message-header"> | ||
<span class="author">{{ ::message.author }}</span>{{ ::message.header }} | ||
</div> | ||
<div class="message-time"> | ||
<div class="post-time"> | ||
{{::message.time}} | ||
</div> | ||
<div class="ago-time"> | ||
{{::message.ago}} | ||
</div> | ||
<div class="message-content"> | ||
{{::message.text}} | ||
</div> | ||
</div> | ||
</div> | ||
<div class="message-time"> | ||
<div class="post-time"> | ||
{{::message.time}} | ||
</div> | ||
<div class="ago-time"> | ||
{{::message.ago}} | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 37 additions & 1 deletion
38
src/app/pages/dashboard/widgets/popularApp/_popularApp.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,39 @@ | ||
.popular-app { | ||
height: 444px; | ||
.panel-body { | ||
padding: 0; | ||
} | ||
|
||
.popular-app-img { | ||
position: relative; | ||
background: #e9e9e9; | ||
padding: 30px 0; | ||
height: 260px; | ||
|
||
img { | ||
width: 70%; | ||
position: absolute; | ||
transform: translateY(-50%) translate(-50%); | ||
top: 50%; | ||
left: 50%; | ||
} | ||
} | ||
.popular-app-cost { | ||
font-size: 20px; | ||
padding: 20px 22px; | ||
border-bottom: 1px solid $border; | ||
} | ||
.popular-app-info { | ||
padding: 20px 22px; | ||
font-size: 20px; | ||
text-align: center; | ||
.info-label { | ||
font-size: 12px; | ||
} | ||
} | ||
.row { | ||
margin: 0; | ||
> div { | ||
padding: 0; | ||
} | ||
} | ||
} |
46 changes: 23 additions & 23 deletions
46
src/app/pages/dashboard/widgets/popularApp/popularApp.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<div class="popular-app"> | ||
<div class="popular-app-img"> | ||
<!--<img src="img/tinder-logo.jpg"/>--> | ||
<div class="popular-app-img"> | ||
<img src="img/chernika.png"/> | ||
</div> | ||
<div class="popular-app-cost row"> | ||
<div class="col-xs-9"> | ||
Most Popular App | ||
</div> | ||
<div class="popular-app-main"> | ||
<div class="popular-app-top"> | ||
<h4>Most Popular App</h4> | ||
<p>17$</p> | ||
</div> | ||
<div class="row"> | ||
<div class="col-sm-4"> | ||
<h6>Total Visits</h6> | ||
<p>47,512</p> | ||
</div> | ||
<div class="col-sm-4"> | ||
<h6>New Visits</h6> | ||
<p>9,217</p> | ||
</div> | ||
<div class="col-sm-4"> | ||
<h6>Sales</h6> | ||
<p>2,928</p> | ||
</div> | ||
</div> | ||
<div class="col-xs-3 text-right"> | ||
175$ | ||
</div> | ||
</div> | ||
</div> | ||
<div class="popular-app-info row"> | ||
<div class="col-xs-4 text-left"> | ||
<div class="info-label">Total Visits</div> | ||
<div>47,512</div> | ||
</div> | ||
<div class="col-xs-4 text-center"> | ||
<div class="info-label">New Visits</div> | ||
<div>9,217</div> | ||
</div> | ||
<div class="col-xs-4 text-right"> | ||
<div class="info-label">Sales</div> | ||
<div>2,928</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes