diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-08-10 17:30:35 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-08-10 17:30:35 +0000 |
commit | c0c491dd61807df44ce7e20d1cfc04c7830ab48e (patch) | |
tree | 53a4ae61a384d30b0da1d75a86d0c72c56a5175d /public/stylesheets | |
parent | 0a6c1d9c136b271913bfba12e08d2169e6afa99f (diff) | |
download | redmine-c0c491dd61807df44ce7e20d1cfc04c7830ab48e.tar.gz redmine-c0c491dd61807df44ce7e20d1cfc04c7830ab48e.zip |
Display a projects tree instead of a flat list in notification preferences (#11539).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10189 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets')
-rw-r--r-- | public/stylesheets/application.css | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 8ada32524..df3cd5444 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -412,12 +412,15 @@ form .attributes select { width: 60%; } input#issue_subject { width: 99%; } select#issue_done_ratio { width: 95px; } -ul.projects { margin: 0; padding-left: 1em; } -ul.projects.root { margin: 0; padding: 0; } -ul.projects ul.projects { border-left: 3px solid #e0e0e0; } -ul.projects li.root { list-style-type:none; margin-bottom: 1em; } -ul.projects li.child { list-style-type:none; margin-top: 1em;} -ul.projects div.root a.project { font-family: "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 16px; margin: 0 0 10px 0; } +ul.projects {margin:0; padding-left:1em;} +ul.projects.root {margin:0; padding:0;} +ul.projects li {list-style-type:none;} + +#projects-index ul.projects ul.projects { border-left: 3px solid #e0e0e0; } +#projects-index ul.projects li.root {margin-bottom: 1em;} +#projects-index ul.projects li.child {margin-top: 1em;} +#projects-index ul.projects div.root a.project { font-family: "Trebuchet MS", Verdana, sans-serif; font-weight: bold; font-size: 16px; margin: 0 0 10px 0; } +#notified-projects ul.projects ul {padding-left:1.6em;} .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; } #tracker_project_ids ul { margin: 0; padding-left: 1em; } |