diff options
author | Torsten Grote <grote@kolabsys.com> | 2012-08-23 14:11:16 (GMT) |
---|---|---|
committer | Torsten Grote <grote@kolabsys.com> | 2012-08-23 14:11:16 (GMT) |
commit | cb798cd1795edfddba8b598405419c35380a1d1e (patch) | |
tree | 19ed933cd95193215f0861a52f3cd0e8149a5e08 /public_html/skins | |
parent | 8fe5574fa0cebce31e8571bf90c5fdfc14a47101 (diff) | |
download | kolab-wap-cb798cd1795edfddba8b598405419c35380a1d1e.tar.gz |
added new images and made logo clickable
Diffstat (limited to 'public_html/skins')
-rw-r--r-- | public_html/skins/default/images/about.png | bin | 12258 -> 9902 bytes | |||
-rw-r--r-- | public_html/skins/default/images/domains.png | bin | 0 -> 11176 bytes | |||
-rw-r--r-- | public_html/skins/default/images/groups.png | bin | 0 -> 10537 bytes | |||
-rw-r--r-- | public_html/skins/default/images/resources.png | bin | 0 -> 12407 bytes | |||
-rw-r--r-- | public_html/skins/default/images/roles.png | bin | 0 -> 10331 bytes | |||
-rw-r--r-- | public_html/skins/default/images/users.png | bin | 11952 -> 7648 bytes | |||
-rw-r--r-- | public_html/skins/default/style.css | 17 | ||||
-rw-r--r-- | public_html/skins/default/templates/main.html | 2 |
8 files changed, 18 insertions, 1 deletions
diff --git a/public_html/skins/default/images/about.png b/public_html/skins/default/images/about.png Binary files differindex 82e56a1..0b8eb39 100644 --- a/public_html/skins/default/images/about.png +++ b/public_html/skins/default/images/about.png diff --git a/public_html/skins/default/images/domains.png b/public_html/skins/default/images/domains.png Binary files differnew file mode 100644 index 0000000..3aa3380 --- /dev/null +++ b/public_html/skins/default/images/domains.png diff --git a/public_html/skins/default/images/groups.png b/public_html/skins/default/images/groups.png Binary files differnew file mode 100644 index 0000000..698b7ab --- /dev/null +++ b/public_html/skins/default/images/groups.png diff --git a/public_html/skins/default/images/resources.png b/public_html/skins/default/images/resources.png Binary files differnew file mode 100644 index 0000000..c818165 --- /dev/null +++ b/public_html/skins/default/images/resources.png diff --git a/public_html/skins/default/images/roles.png b/public_html/skins/default/images/roles.png Binary files differnew file mode 100644 index 0000000..d715c5f --- /dev/null +++ b/public_html/skins/default/images/roles.png diff --git a/public_html/skins/default/images/users.png b/public_html/skins/default/images/users.png Binary files differindex 23fa5d3..5726a2b 100644 --- a/public_html/skins/default/images/users.png +++ b/public_html/skins/default/images/users.png diff --git a/public_html/skins/default/style.css b/public_html/skins/default/style.css index d5ede27..6f6de71 100644 --- a/public_html/skins/default/style.css +++ b/public_html/skins/default/style.css @@ -203,6 +203,7 @@ td.label { left: 10px; width: 198px; height: 74px; + cursor: pointer; background: url(images/logo.png) 0 0 no-repeat; } @@ -812,6 +813,22 @@ fieldset.tabbed background: url(images/users.png) center center no-repeat; } +#main div.group span.image { + background: url(images/groups.png) center center no-repeat; +} + +#main div.resource span.image { + background: url(images/resources.png) center center no-repeat; +} + +#main div.domain span.image { + background: url(images/domains.png) center center no-repeat; +} + +#main div.role span.image { + background: url(images/roles.png) center center no-repeat; +} + #main div span.label { font-weight: bold; diff --git a/public_html/skins/default/templates/main.html b/public_html/skins/default/templates/main.html index b19bf42..ed902c6 100644 --- a/public_html/skins/default/templates/main.html +++ b/public_html/skins/default/templates/main.html @@ -10,7 +10,7 @@ <script src="{$skin_path}ui.js"></script> </head> <body> - <div id="logo"></div> + <div id="logo" onclick="document.location='.'"></div> <div id="topmenu"> <span class="login">{$user.fullname}</span> <span class="logout link" title="{$engine->translate('Logout')}" onclick="kadm.main_logout()"></span> |