Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4399 rajveer 1
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
2
<ui:UiBinder
3
	xmlns:ui="urn:ui:com.google.gwt.uibinder"
4
	xmlns:g="urn:import:com.google.gwt.user.client.ui">
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.AlertList.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
		<g:center>
70
			<g:ScrollPanel>
71
				<g:FlexTable ui:field='alertsDescriptionTable' styleName='{style.table}' cellSpacing='0' cellPadding='0' />
72
			</g:ScrollPanel>
73
		</g:center>
74
	</g:DockLayoutPanel>
75
</ui:UiBinder>