Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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"
4
	xmlns:catalog="urn:import:in.shop2020.catalog.dashboard.client">
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.catalog.dashboard.client.ItemList.SelectionStyle'>
46
			.alertsRow {
47
				color: red
48
			}
49
 
50
			.alertsRow td {
51
				border-top: 1px solid #88a4d6;
52
				border-bottom: 1px solid #7b97d0;
53
			}
54
 
55
			.selectedRow {
56
				background: #adcce7;
57
			}
58
 
59
			.selectedRow td {
60
				border-top: 1px solid #88a4d6;
61
				border-bottom: 1px solid #7b97d0;
62
			}
63
		</ui:style>
64
 
65
	<g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
66
		<g:north size='2'>
67
			<g:FlexTable ui:field='header' styleName='{style.header}' cellSpacing='0' cellPadding='0'/>
68
		</g:north>
69
 
70
		<g:center>
71
			<g:ScrollPanel>
72
				<g:FlexTable ui:field='itemDescriptionTable' styleName='{style.table}' cellSpacing='0' cellPadding='0' />
73
			</g:ScrollPanel>
74
		</g:center>
75
	</g:DockLayoutPanel>
76
</ui:UiBinder>