@@ -33,19 +33,23 @@ body(ng-app="arbitration"): div(ng-controller="ArbitrationCtrl")
33
33
tr
34
34
td Arbiters
35
35
td
36
- div( ng-repeat ="a in escrow.arbiters" )
37
- span {{ a }}
36
+ div( ng-repeat ="a in escrow.arbiters" , style ="height:40px" )
37
+ small {{ a }}
38
+ td
39
+ div( ng-repeat ="a in escrow.arbiters" , style ="height:40px" )
38
40
button.btn.raise5 ( ng-click ="removeArbiter(a)" , style ="margin-left:12px" ) Remove
39
41
tr
40
42
td Add new arbiter
41
43
td
42
44
span
43
45
input( type ="text" ,placeholder ="Address" ,ng-model ="escrow.newArbiter" )
44
- button.btn.raise5 ( ng-click ="addArbiter()" , style ="margin-left:10px" ) Add
46
+ td
47
+ button.btn.raise5 ( ng-click ="addArbiter()" , style ="margin-left:10px" ) Add
45
48
tr
46
49
td Add new arbiter from selection
47
50
td
48
51
select( ng-model ="escrow.newArbiterFromSelection" , ng-options ="x for x in arbiters" )
52
+ td
49
53
button.btn.raise5 ( ng-click ="addArbiterFromSelection()" , style ="margin-left:12px" ) Add
50
54
tr
51
55
td
@@ -54,7 +58,7 @@ body(ng-app="arbitration"): div(ng-controller="ArbitrationCtrl")
54
58
tr
55
59
td Description
56
60
td
57
- input ( type = "text" , placeholder ="Description" ,ng-model ="escrow.description" )
61
+ textarea ( placeholder ="Description" ,ng-model ="escrow.description" , style = "width:333px" , rows = "4 ")
58
62
tr
59
63
td Value
60
64
td
@@ -67,15 +71,14 @@ body(ng-app="arbitration"): div(ng-controller="ArbitrationCtrl")
67
71
td
68
72
td
69
73
button.btn.raise5 ( ng-click ="createEscrow()" , ng-disabled ="cannot_create_escrow" ) Create escrow
70
- span .redtext ( style ="margin-left: 20px" , ng-show ="cannot_create_escrow" ) {{ cannot_create_escrow_error_message }}
74
+ small .redtext ( style ="margin-left: 20px" , ng-show ="cannot_create_escrow" ) {{ cannot_create_escrow_error_message }}
71
75
div( ng-show ="activetab == 1" )
72
76
center
73
77
table( style ="margin:100px 0px" ,cellpadding ="20px" )
74
78
tr
75
79
td Fee
76
80
td
77
81
input( type ="text" ,placeholder ="Fee" ,ng-model ="listingFee" )
78
- span (The more you pay, the higher you will be listed in the dropdown!)
79
82
tr
80
83
td
81
84
td
@@ -100,17 +103,18 @@ body(ng-app="arbitration"): div(ng-controller="ArbitrationCtrl")
100
103
center
101
104
table( style ="margin:100px 0px" ,cellpadding ="20px" )
102
105
tr
103
- td Description
106
+ td( style = "width: 250px" ) Description
104
107
td Value
105
108
td Fee
106
109
td
110
+ td
107
111
tr( ng-repeat ="d in escrows" )
108
112
td {{ d.description }}
109
113
td {{ d.value }}
110
114
td {{ d.fee }}
111
115
td( ng-show ="d.type == 1" )
112
- button.btn.raise5 ( ng-click ="vote(d.id, true)" ) Vote A
113
- button.btn.raise5 ( ng-click ="vote(d.id, false)" ) Vote B
116
+ button.btn.raise5 ( ng-click ="vote(d.id, true)" , style = "width: 45%" ) Vote A
117
+ button.btn.raise5 ( ng-click ="vote(d.id, false)" , style = "width: 45%; margin-left: 8%" ) Vote B
114
118
td( ng-show ="d.type == 2" )
115
119
button.btn.raise5 ( ng-click ="vote(d.id, false)" ) Release funds to counterparty
116
120
td( ng-show ="d.type == 3" )
0 commit comments