diff options
author | Go MAEDA <maeda@farend.jp> | 2019-04-23 15:37:06 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-04-23 15:37:06 +0000 |
commit | e184fc971dad9dc4ffc9e2a673bce87a4ed5618e (patch) | |
tree | b5196b2438faeb1e8f4ac4389117beb4e55b7dcc /public | |
parent | a886d774c916ad7f47dc70d4939c31b4b2d57b54 (diff) | |
download | redmine-e184fc971dad9dc4ffc9e2a673bce87a4ed5618e.tar.gz redmine-e184fc971dad9dc4ffc9e2a673bce87a4ed5618e.zip |
Wrap subprojects in the overview section with an unordered list (#29289).
Patch by Bernhard Rohloff.
git-svn-id: http://svn.redmine.org/redmine/trunk@18077 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 25acf1a14..09bcd5b7e 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -639,6 +639,10 @@ ul.projects div.description li {list-style-type:initial;} #notified-projects>ul, #tracker_project_ids>ul, #custom_field_project_ids>ul {max-height:250px; overflow-y:auto;} +ul.subprojects {list-style: none; display: inline-block; padding: 0; margin: 0;} +ul.subprojects li {float: left;} +ul.subprojects li:not(:last-child)::after {content: ', '; white-space: pre; white-space: pre;} + #related-issues li img {vertical-align:middle;} ul.properties {padding:0; font-size: 0.9em; color: #777;} |