Subversion Repositories SmartDukaan

Rev

Rev 30183 | Rev 30234 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30183 Rev 30232
Line 1... Line 1...
1
     
1
<style>
2
                          <div class="col-lg-9">
2
    select.income-select > option:disabled {
3
                          <button type="button" class="incomeHidden" hidden>My Button</button>
3
        color: white !important;
-
 
4
    }
-
 
5
</style>
4
                          
6
<div class="col-lg-9">
5
                             <div class="info-box light-salmon-bg" style="height: 145px;" >
7
    <div class="info-box light-salmon-bg total-income" style="height: 145px;">
6
                               <i class="fas fa-coins"></i>
8
        <i class="fas fa-coins"></i>
7
                                  <h3 style="margin-top:-2px;margin-bottom:12px"><strong>MY INCOME :</strong>
9
        <h3 style="margin-top:-2px;margin-bottom:12px"><strong>MY INCOME :</strong>
8
                                 
-
 
-
 
10
 
9
						          <select id = "month-wish-total-income"  name="month-wish-total-income" placeholder="months" style="margin:auto;">
11
            <select id="month-wish-total-income" name="month-wish-total-income" placeholder="months"
-
 
12
                    style="margin:auto;background-color: transparent;color: white;" class="income-select">
10
								    <option value="" disabled selected>month</option>
13
                <option value="" disabled selected style="background-color:#4682B4;color: white">month</option>
11
									#foreach($mVM in $monthValueMap.entrySet())
14
                #foreach($mVM in $monthValueMap.entrySet())
12
										#if($mVM.getKey()== $month )
15
                    #if($mVM.getKey()== $month )
13
					             		<option value="$mVM.getKey()" selected>$mVM.getValue()</option>
16
                        <option value="$mVM.getKey()" selected disabled
-
 
17
                                style="background-color:#4682B4;color: white">$mVM.getValue()</option>
14
					             		#else
18
                    #else
15
					             		<option value="$mVM.getKey()">$mVM.getValue()</option>
19
                        <option value="$mVM.getKey()"
-
 
20
                                style="background-color:#4682B4;color: white">$mVM.getValue()</option>
16
					             		#end
21
                    #end
17
				             		#end
22
                #end
18
						           </select> 
23
            </select>
-
 
24
 
19
						     
25
        </h3>
20
                                  </h3>
-
 
21
                                 <div class="col-lg-3">
26
        <div class="col-lg-3">
22
                                   <div style="margin-top:10px" class="count currency">$totalIncome</div>
27
            <div style="margin-top:10px" class="count currency">$totalIncome</div>
23
                                   <div class="title" style="margin-left:5px;">Total Income</div>    
28
            <div class="title" style="margin-left:5px;">Total Income</div>
24
                                 </div>
29
        </div>
25
                                 <div class="col-lg-2">
30
        <div class="col-lg-2">
26
                                     <i class="fk_more fa fa-angle-double-right flash" style="margin: -6px;"></i>   
31
            <i class="fk_more fa fa-angle-double-right flash" style="margin: -6px;"></i>
27
                                 </div>
32
        </div>
28
                                 <div class="col-lg-2">
33
        <div class="col-lg-2">
29
                                   <div style="margin-top:8px" class="count currency">$creditedIncome</div>
34
            <div style="margin-top:8px" class="count currency">$creditedIncome</div>
30
                                   <div class="title credit-income" style="margin-left:5px; cursor:pointer;">Credited Income</div>
35
            <div class="title credit-income" style="margin-left:5px; cursor:pointer;">Credited Income</div>
31
                                 </div>
36
        </div>
32
                                 <div class="col-lg-2">
37
        <div class="col-lg-2">
33
                                   <div style="margin-top:8px" class="count currency">$pendingTotalIncome</div>
38
            <div style="margin-top:8px" class="count currency">$pendingTotalIncome</div>
34
                                   <div class="title" style="margin-left:5px; cursor:pointer;" >Pending Income</div>
39
            <div class="title" style="margin-left:5px; cursor:pointer;">Pending Income</div>
35
                                 </div>
40
        </div>
36
                              </div>   
41
    </div>
37
                           </div>  
42
</div>