diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-06-30 03:14:30 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-06-30 03:14:30 +0000 |
commit | 43bbda1966d2f666318e1339c3f42d34761ddbaa (patch) | |
tree | 5fe9c02192653ea1e23ce9b220c09115a34de899 /public/stylesheets | |
parent | 5a17b5ba394f8084fd98d65c5d0da0fb8fff6e7f (diff) | |
download | redmine-43bbda1966d2f666318e1339c3f42d34761ddbaa.tar.gz redmine-43bbda1966d2f666318e1339c3f42d34761ddbaa.zip |
Don't style lists in a project description as a sub-project. #5752
Contributed by Holger Just
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3823 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/stylesheets')
-rw-r--r-- | public/stylesheets/application.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 46fc8a88a..2067bf3db 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -343,10 +343,9 @@ form .attributes select { min-width: 50%; } ul.projects { margin: 0; padding-left: 1em; } ul.projects.root { margin: 0; padding: 0; } -ul.projects ul { border-left: 3px solid #e0e0e0; } -ul.projects li { list-style-type:none; } -ul.projects li.root { margin-bottom: 1em; } -ul.projects li.child { margin-top: 1em;} +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; } .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; } |