diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-01-17 14:14:12 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-01-17 14:14:12 +0000 |
commit | e3618bdbecd9b5d86eb6d2c8c256ba3fcdf05189 (patch) | |
tree | 3b54c10eecece6cc2674491a76a4e5e932d82d1e /public | |
parent | 7f29c2fd88f271ac59f1c10b90942fec57b35ae2 (diff) | |
download | redmine-e3618bdbecd9b5d86eb6d2c8c256ba3fcdf05189.tar.gz redmine-e3618bdbecd9b5d86eb6d2c8c256ba3fcdf05189.zip |
Add support for multiple email addresses per user (#4244).
git-svn-id: http://svn.redmine.org/redmine/trunk@13886 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/images/email.png | bin | 0 -> 641 bytes | |||
-rw-r--r-- | public/images/email_add.png | bin | 0 -> 761 bytes | |||
-rw-r--r-- | public/images/email_disabled.png | bin | 0 -> 386 bytes | |||
-rw-r--r-- | public/javascripts/application.js | 4 | ||||
-rw-r--r-- | public/stylesheets/application.css | 4 |
5 files changed, 5 insertions, 3 deletions
diff --git a/public/images/email.png b/public/images/email.png Binary files differnew file mode 100644 index 000000000..7348aed77 --- /dev/null +++ b/public/images/email.png diff --git a/public/images/email_add.png b/public/images/email_add.png Binary files differnew file mode 100644 index 000000000..6c933681f --- /dev/null +++ b/public/images/email_add.png diff --git a/public/images/email_disabled.png b/public/images/email_disabled.png Binary files differnew file mode 100644 index 000000000..7aa93e89a --- /dev/null +++ b/public/images/email_disabled.png diff --git a/public/javascripts/application.js b/public/javascripts/application.js index 80d833966..a3ead6b23 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -378,10 +378,10 @@ function setPredecessorFieldsVisibility() { } } -function showModal(id, width) { +function showModal(id, width, title) { var el = $('#'+id).first(); if (el.length === 0 || el.is(':visible')) {return;} - var title = el.find('h3.title').text(); + if (!title) title = el.find('h3.title').text(); el.dialog({ width: width, modal: true, diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 4b9a4ff49..0efd900de 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -132,6 +132,7 @@ table.list td.checkbox { width: 15px; padding: 2px 0 0 0; } table.list td.checkbox input {padding:0px;} table.list td.buttons { width: 15%; white-space:nowrap; text-align: right; } table.list td.buttons a { padding-right: 0.6em; } +table.list td.buttons img {vertical-align:middle;} table.list td.reorder {width:15%; white-space:nowrap; text-align:center; } table.list caption { text-align: left; padding: 0.5em 0.5em 0.5em 0; } @@ -209,7 +210,7 @@ tr.version.shared td.name { background: url(../images/link.png) no-repeat 0% 70% tr.version td.date, tr.version td.status, tr.version td.sharing { text-align: center; white-space:nowrap; } tr.user td {width:13%;white-space: nowrap;} -tr.user td.username, tr.user td.firstname, tr.user td.lastname, tr.user td.email {text-align:left;} +td.username, td.firstname, td.lastname, td.email {text-align:left !important;} tr.user td.email { width:18%; } tr.user.locked, tr.user.registered { color: #aaa; } tr.user.locked a, tr.user.registered a { color: #aaa; } @@ -1046,6 +1047,7 @@ a.close-icon:hover {background-image:url('../images/close_hl.png');} .icon-zoom-out { background-image: url(../images/zoom_out.png); } .icon-passwd { background-image: url(../images/textfield_key.png); } .icon-test { background-image: url(../images/bullet_go.png); } +.icon-email-add { background-image: url(../images/email_add.png); } .icon-file { background-image: url(../images/files/default.png); } .icon-file.text-plain { background-image: url(../images/files/text.png); } |