Subversion Repositories SmartDukaan

Rev

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