diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-04-12 16:54:14 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-04-12 16:54:14 +0000 |
commit | 6d2a89142af235b5d0a9e30350859fb99ac665f3 (patch) | |
tree | 6d1ee51c6fe03dd5020299f9c50ad8ee0b688b57 /public | |
parent | 85f040c5362dd89829f694a58f4e91ced7fcd33e (diff) | |
download | redmine-6d2a89142af235b5d0a9e30350859fb99ac665f3.tar.gz redmine-6d2a89142af235b5d0a9e30350859fb99ac665f3.zip |
Add an icon to each event on the activity view.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1342 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/images/attachment.png | bin | 259 -> 995 bytes | |||
-rw-r--r-- | public/images/changeset.png | bin | 0 -> 512 bytes | |||
-rw-r--r-- | public/images/comments.png | bin | 0 -> 557 bytes | |||
-rw-r--r-- | public/images/document.png | bin | 0 -> 458 bytes | |||
-rw-r--r-- | public/images/message.png | bin | 0 -> 521 bytes | |||
-rw-r--r-- | public/images/news.png | bin | 0 -> 658 bytes | |||
-rw-r--r-- | public/images/ticket.png | bin | 0 -> 500 bytes | |||
-rw-r--r-- | public/images/ticket_checked.png | bin | 0 -> 598 bytes | |||
-rw-r--r-- | public/images/ticket_edit.png | bin | 0 -> 731 bytes | |||
-rw-r--r-- | public/images/wiki_edit.png | bin | 0 -> 626 bytes | |||
-rw-r--r-- | public/stylesheets/application.css | 14 |
11 files changed, 12 insertions, 2 deletions
diff --git a/public/images/attachment.png b/public/images/attachment.png Binary files differindex eea26921b..b7ce3c445 100644 --- a/public/images/attachment.png +++ b/public/images/attachment.png diff --git a/public/images/changeset.png b/public/images/changeset.png Binary files differnew file mode 100644 index 000000000..67de2c6cc --- /dev/null +++ b/public/images/changeset.png diff --git a/public/images/comments.png b/public/images/comments.png Binary files differnew file mode 100644 index 000000000..39433cf78 --- /dev/null +++ b/public/images/comments.png diff --git a/public/images/document.png b/public/images/document.png Binary files differnew file mode 100644 index 000000000..d00b9b2f4 --- /dev/null +++ b/public/images/document.png diff --git a/public/images/message.png b/public/images/message.png Binary files differnew file mode 100644 index 000000000..252ea14d5 --- /dev/null +++ b/public/images/message.png diff --git a/public/images/news.png b/public/images/news.png Binary files differnew file mode 100644 index 000000000..6a2ecce1b --- /dev/null +++ b/public/images/news.png diff --git a/public/images/ticket.png b/public/images/ticket.png Binary files differnew file mode 100644 index 000000000..244e6ca04 --- /dev/null +++ b/public/images/ticket.png diff --git a/public/images/ticket_checked.png b/public/images/ticket_checked.png Binary files differnew file mode 100644 index 000000000..4b1dfbc3e --- /dev/null +++ b/public/images/ticket_checked.png diff --git a/public/images/ticket_edit.png b/public/images/ticket_edit.png Binary files differnew file mode 100644 index 000000000..291bfc764 --- /dev/null +++ b/public/images/ticket_edit.png diff --git a/public/images/wiki_edit.png b/public/images/wiki_edit.png Binary files differnew file mode 100644 index 000000000..bdc333a65 --- /dev/null +++ b/public/images/wiki_edit.png diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 7c3e0fde7..682e95dde 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -169,11 +169,21 @@ div#issue-changesets .changeset { border-bottom: 1px solid #ddd; } div#issue-changesets p { margin-top: 0; margin-bottom: 1em;} div#activity dl { margin-left: 2em; } -div#activity dd { margin-bottom: 1em; } -div#activity dt { margin-bottom: 1px; } +div#activity dd { margin-bottom: 1em; padding-left: 18px; } +div#activity dt { margin-bottom: 1px; padding-left: 20px; line-height: 18px; background-position: 0 50%; background-repeat: no-repeat; } div#activity dt .time { color: #777; font-size: 80%; } div#activity dd .description { font-style: italic; } div#activity span.project:after { content: " -"; } +div#activity dt.issue { background-image: url(../images/ticket.png); } +div#activity dt.issue-edit { background-image: url(../images/ticket_edit.png); } +div#activity dt.issue-closed { background-image: url(../images/ticket_checked.png); } +div#activity dt.changeset { background-image: url(../images/changeset.png); } +div#activity dt.news { background-image: url(../images/news.png); } +div#activity dt.message { background-image: url(../images/message.png); } +div#activity dt.reply { background-image: url(../images/comments.png); } +div#activity dt.wiki-page { background-image: url(../images/wiki_edit.png); } +div#activity dt.attachment { background-image: url(../images/attachment.png); } +div#activity dt.document { background-image: url(../images/document.png); } div#roadmap fieldset.related-issues { margin-bottom: 1em; } div#roadmap fieldset.related-issues ul { margin-top: 0.3em; margin-bottom: 0.3em; } |