summaryrefslogtreecommitdiffstats
path: root/install/ui/index.html
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-06-07 20:48:20 -0500
committerAdam Young <ayoung@redhat.com>2011-06-13 09:23:29 -0400
commit9704adfe44c915de97f416c18bcaeabea2c927ba (patch)
tree92fc1e3eb8d3c4816c88750facedd52511ff7ea9 /install/ui/index.html
parentd2b483cbb3ca15a68115cf32cfaf89572259914e (diff)
downloadfreeipa-9704adfe44c915de97f416c18bcaeabea2c927ba.tar.gz
freeipa-9704adfe44c915de97f416c18bcaeabea2c927ba.tar.xz
freeipa-9704adfe44c915de97f416c18bcaeabea2c927ba.zip
Fixed resizing issues.
The UI has been modified to fix some resizing issues: Previously the height of facet content was roughly calculated using resize(). Now the height can be more accurately defined in CSS. Previously the UI width was fixed. The HTML layout and background images have been modified to support horizontal expansion if needed.
Diffstat (limited to 'install/ui/index.html')
-rw-r--r--install/ui/index.html44
1 files changed, 29 insertions, 15 deletions
diff --git a/install/ui/index.html b/install/ui/index.html
index af8a1e109..6e85d28b3 100644
--- a/install/ui/index.html
+++ b/install/ui/index.html
@@ -46,22 +46,36 @@
<link rel="icon" type="image/ico" href="favicon.ico">
</head>
-<body>
- <div class="center-container">
- <div class="header" >
- <span class="header-logo">
- <a href="#"><img src="ipalogo.png" /><img src="ipabanner.png" /></a>
- </span>
- <span id="header-network-activity-indicator" class="network-activity-indicator">
- <img src="spinner_header.gif" />
- </span>
- <span id="loggedinas" class="header-loggedinas">
- <a href="#"><span id="login_header">Logged in as</span>: <strong>user@FREEIPA.ORG</strong></a>
- </span>
+<body>
+
+ <div id="container">
+
+ <div id="background">
+ <div id="background-header"></div>
+ <div id="background-navigation"></div>
+ <div id="background-left"></div>
+ <div id="background-center"></div>
+ <div id="background-right"></div>
+ </div>
+
+ <div id="header">
+ <span class="header-logo">
+ <a href="#"><img src="ipalogo.png" /><img src="ipabanner.png" /></a>
+ </span>
+ <span id="header-network-activity-indicator" class="network-activity-indicator">
+ <img src="spinner_header.gif" />
+ </span>
+ <span id="loggedinas" class="header-loggedinas">
+ <a href="#"><span id="login_header">Logged in as</span>: <strong>user@FREEIPA.ORG</strong></a>
+ </span>
+ </div>
+
+ <div id="navigation"></div>
+
+ <div id="content"></div>
+
</div>
- <div id="navigation" class="tabs"></div>
- <div id="content"></div>
- </div>
+
</body>
</html>