diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-02 10:16:12 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-02 10:16:12 +0000 |
commit | 91875688778e936924daa8445513387808d95053 (patch) | |
tree | da28ac218d50fdb5cad256af276a9a4b5ab31db1 /public | |
parent | 050d2bee842385e32d2d01b32bbd4a0c02824c21 (diff) | |
download | redmine-91875688778e936924daa8445513387808d95053.tar.gz redmine-91875688778e936924daa8445513387808d95053.zip |
Set a max width for filter values.
git-svn-id: http://svn.redmine.org/redmine/trunk@15603 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index e2ded89f4..c97f94d9a 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -410,10 +410,10 @@ fieldset#filters table { border-collapse: collapse; } fieldset#filters table td { padding: 0; vertical-align: middle; } fieldset#filters tr.filter { height: 2.1em; } fieldset#filters td.field { width:230px; } -fieldset#filters td.operator { width:180px; } -fieldset#filters td.operator select {max-width:170px;} +fieldset#filters td.operator { width:130px; } +fieldset#filters td.operator select {max-width:120px;} fieldset#filters td.values { white-space:nowrap; } -fieldset#filters td.values select {min-width:130px;} +fieldset#filters td.values select {min-width:130px; max-width:200px;} fieldset#filters td.values input {height:1em;} #filters-table {width:60%; float:left;} |