Statistics
| Branch: | Tag: | Revision:

root / src / gr / ebs / gss / admin / client / ui / HeaderPanel.ui.xml @ 0a37ac21

History | View | Annotate | Download (973 Bytes)

1
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
2
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
3
        xmlns:g="urn:import:com.google.gwt.user.client.ui"
4
        xmlns:admin='urn:import:gr.ebs.gss.admin.client'>
5
        <ui:image field='logo' src='service-logo.png'/>
6

    
7
  <ui:style>
8
  .statusDiv {
9
    text-align: right;
10
    margin: 1em;
11
  }
12

    
13
  .linksDiv {
14
    text-align: right;
15
  }
16

    
17
  @if user.agent ie6 {
18
    .logo {
19
      background-image: url(logo_ie6.gif);
20
      width: 140px;
21
      height: 75px;
22
      position: absolute;
23
    }
24
  } @else {
25
    @sprite .logo {
26
      gwt-image: 'logo';
27
      position: absolute;
28
    }
29
  }
30
  </ui:style>
31

    
32
  <g:HTMLPanel>
33
    <div class='{style.logo}'/>
34

    
35
    <div class="{style.statusDiv}">
36
      <div>
37
        <b>Administration Panel</b>
38
      </div>
39

    
40
      <div class='{style.linksDiv}'>
41
        <g:Anchor href='javascript:;' ui:field='signOutLink'>Sign Out</g:Anchor>
42
      </div>
43
    </div>
44
  </g:HTMLPanel>
45
</ui:UiBinder>