Subversion Repositories SmartDukaan

Rev

Rev 584 | Details | Compare with Previous | Last modification | View Log | RSS feed

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