diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-04-04 17:17:47 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-04-04 17:17:47 +0000 |
commit | 88a3a351d08b5446317c1813cf2b966aa5f716fb (patch) | |
tree | 169a31dda9d70770d0c63337e93c6f1b27617851 /public | |
parent | b9ee00a8c8ba2fe2b32eb33d299d4764ebc2968b (diff) | |
download | redmine-88a3a351d08b5446317c1813cf2b966aa5f716fb.tar.gz redmine-88a3a351d08b5446317c1813cf2b966aa5f716fb.zip |
Don't hardcode the groups on My page.
git-svn-id: http://svn.redmine.org/redmine/trunk@16475 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 4 | ||||
-rw-r--r-- | public/stylesheets/responsive.css | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index a250ba36b..5c45cf5a6 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -428,8 +428,8 @@ div.square { .message .contextual { margin-top: 0; } .splitcontent {overflow:auto;} -.splitcontentleft{float:left; width:49%;} -.splitcontentright{float:right; width:49%;} +.splitcontentleft, #list-left {float:left; width:49%;} +.splitcontentright, #list-right {float:right; width:49%;} form {display: inline;} input, select {vertical-align: middle; margin-top: 1px; margin-bottom: 1px;} input[type="submit"] { -webkit-appearance: button; } diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index 8e7f7465a..e4b8be20e 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -217,11 +217,11 @@ display: none; } - .splitcontentleft { + .splitcontentleft, #list-left { width: 100%; } - .splitcontentright { + .splitcontentright, #list-right { width: 100%; } |