diff options
author | Markus Warg <mw@it-sls.de> | 2010-07-07 09:41:44 +0200 |
---|---|---|
committer | Markus Warg <mw@it-sls.de> | 2010-07-07 09:41:44 +0200 |
commit | 1a0d0c99c39054ee42508fede5a87ade5f2bcdca (patch) | |
tree | bd7f26be20fd6633a59cae55dae1cd5f6077345c /manager/public | |
parent | 46d228ccc3d7e0ceb701802790de6de9717feef0 (diff) | |
download | cacert-mgr-1a0d0c99c39054ee42508fede5a87ade5f2bcdca.tar.gz cacert-mgr-1a0d0c99c39054ee42508fede5a87ade5f2bcdca.tar.xz cacert-mgr-1a0d0c99c39054ee42508fede5a87ade5f2bcdca.zip |
add view own mails, view all mails (admin role required)
add email delete
Diffstat (limited to 'manager/public')
-rw-r--r-- | manager/public/css/mail.css | 24 | ||||
-rw-r--r-- | manager/public/img/delete_icon.jpg | bin | 0 -> 13842 bytes | |||
-rw-r--r-- | manager/public/js/mail_redirect.js | 8 |
3 files changed, 32 insertions, 0 deletions
diff --git a/manager/public/css/mail.css b/manager/public/css/mail.css index 6cd0274..4ce23f5 100644 --- a/manager/public/css/mail.css +++ b/manager/public/css/mail.css @@ -15,6 +15,25 @@ padding: 3px;
}
+#content .col1 {
+ width: 170px;
+}
+#content .col2 {
+ width: 170px;
+}
+#content .col3 {
+ width: 165px;
+}
+#content .col4 {
+ width: 170px;
+}
+#content .col5 {
+ width: 50px;
+}
+#content .col6 {
+ width: 30px;
+}
+
#content a {
text-decoration: none;
color: #000000;
@@ -23,3 +42,8 @@ #content a:hover {
color: #777777;
}
+
+#content a.delete {
+ background-color: #ffffff;
+ color: white;
+}
diff --git a/manager/public/img/delete_icon.jpg b/manager/public/img/delete_icon.jpg Binary files differnew file mode 100644 index 0000000..f6ce52e --- /dev/null +++ b/manager/public/img/delete_icon.jpg diff --git a/manager/public/js/mail_redirect.js b/manager/public/js/mail_redirect.js new file mode 100644 index 0000000..a60e58f --- /dev/null +++ b/manager/public/js/mail_redirect.js @@ -0,0 +1,8 @@ +var delay = 2000;
+setTimeout('redirect()', delay);
+
+function redirect() {
+ var returnto = document.getElementById('returnto');
+
+ window.location = returnto.value;
+}
\ No newline at end of file |