Commit 4de569579d89601d8fc238ab8c5c785644a55a59

Authored by Palak Handa
1 parent f2142e4909
Exists in master and in 1 other branch paytm

design update

Showing 3 changed files with 15 additions and 9 deletions   Show diff stats
... ... @@ -48,6 +48,9 @@
48 48 border: 0;
49 49 border-radius: 0px !important;
50 50 }
  51 +.panel-default{
  52 + border-color: #ddd;
  53 +}
51 54 .video-wrapper{
52 55 padding: 16px 0;
53 56 }
... ... @@ -1037,7 +1040,10 @@ input.hidden {
1037 1040 .right-side-links{
1038 1041 margin-top: 0;
1039 1042 }
1040   -
  1043 + .panel-default{
  1044 + border-color: transparent;
  1045 + box-shadow: none;
  1046 + }
1041 1047 .modal-footers {
1042 1048 padding: 19px 20px 20px;
1043 1049 margin-top: 15px;
... ...
pages/verify.html
1   -<div class="panel-heading" style="background-color: #42b549;padding:22px 20px"><img src="../images/white.png" style="width: 115px;"></div>
  1 +<div class="panel-heading" style="background-color: #42b549;"><img src="../images/white.png" style="width: 100px;"></div>
2 2 <div class="container container1">
3 3 <div class="row">
4 4 <div class="col-md-6 col-md-offset-3">
... ... @@ -6,7 +6,7 @@
6 6 <div class="panel-body">
7 7 <div class="box box-info">
8 8 <div class="box-body">
9   - <div style="padding: 0% 27% 3%;">
  9 + <div style="text-align:center;padding-bottom:2%">
10 10 <h4>Payment Verification</h4>
11 11 </div>
12 12 <div class="clearfix"></div>
... ... @@ -16,15 +16,15 @@
16 16 <div class="clearfix"></div>
17 17 <div class="bot-border"></div>
18 18 <div class="col-sm-5 col-xs-6 tital">Amount:</div>
19   - <div class="col-sm-7">{{paymentRecord[0].amount}}</div>
  19 + <div class="col-sm-7 col-xs-6">{{paymentRecord[0].amount}}</div>
20 20 <div class="clearfix"></div>
21 21 <div class="bot-border"></div>
22 22 <div class="col-sm-5 col-xs-6 tital">Currency:</div>
23   - <div class="col-sm-7">INR</div>
  23 + <div class="col-sm-7 col-xs-6">INR</div>
24 24 <div class="clearfix"></div>
25 25 <div class="bot-border"></div>
26 26 <div class="col-sm-5 col-xs-6 tital">Status:</div>
27   - <div class="col-sm-7">{{paymentRecord[0].status}}</div>
  27 + <div class="col-sm-7 col-xs-6">{{paymentRecord[0].status}}</div>
28 28 <div class="clearfix"></div>
29 29 <div class="bot-border"></div>
30 30 </div>
... ... @@ -39,7 +39,7 @@
39 39 </div>
40 40 </div>
41 41 <div class="clearfix"></div>
42   -<footer>
  42 +<footer style="margin-top:7%">
43 43 <img id="footer" class="img-responsive banner">
44 44 <center class="footer"> Powered By <a class="footer-link" href="http://www.viithiisys.com/" target="_blank">Viithiisys Technolgies.</a>
45 45 </center>
... ...
... ... @@ -12,7 +12,7 @@
12 12 })
13 13  
14 14 // route for the paymentVerify page
15   - .when('/paymentVerification/:id', {
  15 + .when('/pendingPayment/:id', {
16 16 templateUrl: 'pages/verify.html',
17 17 controller: 'verifyController'
18 18 })
... ... @@ -32,7 +32,7 @@
32 32 });
33 33  
34 34 scotchApp.constant("BASE_URL", "http://139.59.68.74:4001/api")
35   - //scotchApp.constant("BASE_URL", "http://0.0.0.0:4001/api")
  35 + //scotchApp.constant("BASE_URL", "http://0.0.0.0:4001/api")
36 36  
37 37 // create the controller and inject Angular's $scope
38 38 scotchApp.controller('mainController', function($scope, $http, $location, $route, $rootScope, BASE_URL) {
... ...