Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
1961 ankur.sing 1
<ui:UiBinder
2
	xmlns:ui="urn:ui:com.google.gwt.uibinder"
3
	xmlns:g="urn:import:com.google.gwt.user.client.ui"
3524 chandransh 4
	xmlns:c="urn:import:com.google.gwt.user.cellview.client"
1961 ankur.sing 5
	xmlns:catalog="urn:import:in.shop2020.catalog.dashboard.client">
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.catalog.dashboard.client.ItemList.SelectionStyle'>
47
			.alertsRow {
48
				color: red
49
			}
50
 
51
			.alertsRow td {
52
				border-top: 1px solid #88a4d6;
53
				border-bottom: 1px solid #7b97d0;
54
			}
55
 
56
			.selectedRow {
57
				background: #adcce7;
58
			}
59
 
60
			.selectedRow td {
61
				border-top: 1px solid #88a4d6;
62
				border-bottom: 1px solid #7b97d0;
63
			}
64
		</ui:style>
65
 
66
	<g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
2489 ankur.sing 67
        <g:north size="1.5">
68
            <g:Label styleName='{style.header}' ui:field='currentlyShowing'></g:Label>
69
        </g:north>
1961 ankur.sing 70
		<g:center>
71
			<g:ScrollPanel>
3524 chandransh 72
	          <c:CellTable addStyleNames='{style.table}' pageSize='15' ui:field='itemDescriptionTable' />
1961 ankur.sing 73
			</g:ScrollPanel>
74
		</g:center>
3524 chandransh 75
		<g:south size="2.0">
76
			<c:SimplePager ui:field='pager' location='CENTER'/>
77
		</g:south>
1961 ankur.sing 78
	</g:DockLayoutPanel>
79
</ui:UiBinder>