Subversion Repositories SmartDukaan

Rev

Rev 306 | Rev 4004 | 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
 
47
  .alertsRow {
48
 
49
  	color:red
50
  }  
51
 
52
  .alertsRow td {
53
    border-top: 1px solid #88a4d6;
54
    border-bottom: 1px solid #7b97d0;
55
  }
167 ashish 56
 
57
  .selectedRow {
58
    background: #adcce7;
59
  }
60
 
61
  .selectedRow td {
62
    border-top: 1px solid #88a4d6;
63
    border-bottom: 1px solid #7b97d0;
64
  }
65
  </ui:style>
66
 
67
  <g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
68
    <g:north size='2'>
69
      <g:FlexTable ui:field='header' styleName='{style.header}' cellSpacing='0' cellPadding='0'/>
70
    </g:north>
71
 
72
    <g:center>
73
      <g:ScrollPanel>
74
        <g:FlexTable ui:field='table' styleName='{style.table}' cellSpacing='0' cellPadding='0'/>
75
      </g:ScrollPanel>
76
    </g:center>
77
  </g:DockLayoutPanel>
78
</ui:UiBinder>