diff options
author | Pavel Zuna <pzuna@redhat.com> | 2010-09-16 10:28:07 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2010-09-17 19:42:40 -0400 |
commit | 1bb412239d0735af11c3939bfe437cb8b49c7004 (patch) | |
tree | a48dc9331164616c2d2ba655f03634604e08fda0 /install/static/ipa.css | |
parent | 4f37775db75eb59496ce0e6fe11230ea3bd21e8b (diff) | |
download | freeipa.git-1bb412239d0735af11c3939bfe437cb8b49c7004.tar.gz freeipa.git-1bb412239d0735af11c3939bfe437cb8b49c7004.tar.xz freeipa.git-1bb412239d0735af11c3939bfe437cb8b49c7004.zip |
Big webUI patch.
Quick summary:
- use jQuery UI and jQuery BBQ libraries
- code restructuring
The patch has so many changes they can't be listed here. Many parts
of the code have been rewritten from scrach.
See freeipa-devel mailing list:
webUI code restructuring [wall of text, diagrams, ... you've been warned!]
2010-09-07
Diffstat (limited to 'install/static/ipa.css')
-rw-r--r-- | install/static/ipa.css | 57 |
1 files changed, 26 insertions, 31 deletions
diff --git a/install/static/ipa.css b/install/static/ipa.css index 6a3135b2..326ed1c0 100644 --- a/install/static/ipa.css +++ b/install/static/ipa.css @@ -27,52 +27,47 @@ div.header { background-color: #1f1f1f; height: 70px; } -div.header span.LoggedInAs { - color: #fff; - padding-right: 10px; - line-height: 35px; - float: right; -} -div.header div.logo { - float: left; - padding: 10px 10px 0 10px; -} -div.header div.logo img { - border: 0; + +div.header a { + text-decoration: none; } +div.header a:link { + text-decoration: none; +} -div#view { - bottom: 0; - left: 0; - overflow: auto; - position: fixed; - right: 0; - top: 0; +div.header a:visited { + text-decoration: none; } -div#header { - background: -moz-linear-gradient(top, #65646e, #1f1f1f); - background-color: #1f1f1f; - height: 70px; +div.header div.header-logo { + float: left; + padding: 10px 10px 0 10px; } -div#header div#logo img { +div.header div.header-logo img { border: 0; } -div#header div#loggedinas { +div.header span.header-loggedinas { color: #fff; - font-size: 12pt; - font-weight: bold; + float: right; line-height: 35px; padding-right: 10px; - text-align: right; } -div#header div#loggedinas a { - color: #fff; - text-decoration: underline; +/* ---- Navigation ---- */ +div.tabs { + overflow: auto; +} + +/* ---- Search ---- */ +table.search-table { + width: 100%; +} + +table.search-table th { + text-align: left; } h1 { |