diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-02 22:41:53 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-01-02 22:41:53 +0000 |
commit | 3e0acc0b7e1fda93d8bdd9df7b7c8c9551fad864 (patch) | |
tree | a6c9bbd76bc54f0c1c7a41845e8831fa83053ff9 /public | |
parent | 636579b17ddd4b775b060cdb0ac3a94db5e4cb2b (diff) | |
download | redmine-3e0acc0b7e1fda93d8bdd9df7b7c8c9551fad864.tar.gz redmine-3e0acc0b7e1fda93d8bdd9df7b7c8c9551fad864.zip |
Slight improvements to the browser views.
ApplicationHelper#set_html_title replaced by html_title with arguments and can be called several times in views to append elements to the title.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1032 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 37bddbc05..eaef2ae87 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -77,6 +77,16 @@ tr.issue td.subject, tr.issue td.category { white-space: normal; } tr.issue td.subject { text-align: left; } tr.issue td.done_ratio table.progress { margin-left:auto; margin-right: auto;} +tr.entry { border: 1px solid #f8f8f8; } +tr.entry td { white-space: nowrap; } +tr.entry td.filename { width: 30%; } +tr.entry td.size { text-align: right; font-size: 90%; } +tr.entry td.revision, tr.entry td.author { text-align: center; } +tr.entry td.age { text-align: right; } + +tr.changeset td.author { text-align: center; width: 15%; } +tr.changeset td.committed_on { text-align: center; width: 15%; } + tr.message { height: 2.6em; } tr.message td.last_message { font-size: 80%; } tr.message.locked td.subject a { background-image: url(../images/locked.png); } |