Commit 332ee3c8 authored by prumde's avatar prumde

Updated for empty cart


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@174415 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 78a3ed33
......@@ -320,3 +320,7 @@ ecm-search{
font-size: .9rem;
margin-left: 14px;
}
.width-300{
width: 300px;
}
......@@ -5,15 +5,11 @@
<div #overlayPanel class="overlayPanel" >
<span (click)="hideOverlayPanel();" class="hide-button"></span>
<ecm-signin *ngIf="sideOption=='USER_OPT'" (closePanel)="hideOverlayPanel(); createUserData();" ></ecm-signin>
<div *ngIf="sideOption=='CART_OPT'" style="margin: 5rem;" >
Show Cart option will be display here
<button md-raised-button class="button medium-btn-checkout">Checkout</button>
</div>
</div>
<!-- Overlay End -->
<!-- SlidePanel Start -->
<div #rightSlidePanel class="rightSlidePanel" >
<div #rightSlidePanel class="rightSlidePanel" [ngClass]="{'width-300': ( sideOption=='CART_OPT' && cartItems == 0 ) }" >
<span (click)="hideSidePanel();" class="hide-button"></span>
<ecm-user-option *ngIf="sideOption=='USER_OPT'" (closePanel)="hideSidePanel(); createUserData();" (updateProfileImages) = "updateProfileImages();" ></ecm-user-option>
<div *ngIf="sideOption=='CART_OPT'" style="margin: 3rem;" >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment