Subversion Repositories SmartDukaan

Rev

Rev 4004 | Rev 4125 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
167 ashish 1
<ui:UiBinder
2
  xmlns:ui='urn:ui:com.google.gwt.uibinder'
3
  xmlns:g='urn:import:com.google.gwt.user.client.ui'
4124 chandransh 4
  xmlns:c="urn:import:com.google.gwt.user.cellview.client"
167 ashish 5
  xmlns:mail='urn:import:in.shop2020.hotspot.dashbaord.client.inbox'>
6
 
7
  <ui:image field='gradient' src='gradient_bg_dark.png' repeatStyle='Horizontal'/>
8
 
9
  <ui:style>
10
  .outer {
11
    border-left: 1px solid #999;
12
    border-bottom: 1px solid #999;
13
    cursor: pointer;
14
    cursor: hand;
15
  }
16
 
17
  @sprite .header {
18
  	gwt-image: 'gradient';
19
  	background-color: #d3d6dd;
20
    table-layout: fixed;
21
    width: 100%;
22
    height: 100%;
23
  }
24
 
25
  .header td {
26
    font-weight: bold;
27
    text-shadow: #fff 0 2px 2px;
28
    padding: 2px 0 1px 10px;
29
    border-top: 1px solid #999;
30
    border-bottom: 1px solid #999;
31
  }
32
 
33
  .table {
34
    table-layout: fixed;
35
    width: 100%;
36
  }
37
 
38
  .table td {
39
    border-top: 1px solid #fff;
40
    border-bottom: 1px solid #fff;
41
    padding: 2px 0 2px 10px;
42
  }
43
  </ui:style>
44
 
45
  <ui:style field='selectionStyle'
46
    type='in.shop2020.hotspot.dashbaord.client.inbox.OrderList.SelectionStyle'>
306 ashish 47
 
4004 chandransh 48
  .fatalRow {	
49
  	background-color:red;
306 ashish 50
  }  
51
 
4004 chandransh 52
  .fatalRow td {
306 ashish 53
    border-top: 1px solid #88a4d6;
54
    border-bottom: 1px solid #7b97d0;
55
  }
167 ashish 56
 
4004 chandransh 57
  .criticalRow {	
58
  	background-color:orange;
59
  }
60
 
61
  .criticalRow td {
62
    border-top: 1px solid #88a4d6;
63
    border-bottom: 1px solid #7b97d0;
64
  }
65
 
167 ashish 66
  .selectedRow {
67
    background: #adcce7;
68
  }
69
 
70
  .selectedRow td {
71
    border-top: 1px solid #88a4d6;
72
    border-bottom: 1px solid #7b97d0;
73
  }
74
  </ui:style>
75
 
76
  <g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
77
    <g:center>
4124 chandransh 78
      <c:DataGrid ui:field='table' addStyleNames='{style.table}' pageSize='50' />
79
	</g:center>
80
	<g:south size="2.0">
81
	  <c:SimplePager ui:field='pager' location='CENTER'/>
82
	</g:south>
167 ashish 83
  </g:DockLayoutPanel>
84
</ui:UiBinder>