diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-12 18:17:48 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-12 18:17:48 +0000 |
commit | 081e8a89322a08c93cfaa7b199ae14657c1c0e62 (patch) | |
tree | 7e75a6aef759bae6cd2a000c8f2957c2a2fa90f2 /public | |
parent | 2a721fff4cec3d1e14c924566d0d1334152a3393 (diff) | |
download | redmine-081e8a89322a08c93cfaa7b199ae14657c1c0e62.tar.gz redmine-081e8a89322a08c93cfaa7b199ae14657c1c0e62.zip |
Render columns selection using spans instead of a table.
git-svn-id: http://svn.redmine.org/redmine/trunk@16815 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/application.css | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 005dcfef9..9e3e2b46e 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -372,16 +372,19 @@ table.messages td.last_message {text-align:left;} min-width: 1em; } -table.query-columns { - border-collapse: collapse; - border: 0; -} - -table.query-columns td.buttons { +.query-columns>span { + display:inline-block; + height:100%; vertical-align: middle; - text-align: center; } -table.query-columns td.buttons input[type=button] {width:35px;} +.query-columns label { + display:block; +} +.query-columns .buttons input[type=button] { + width:35px; + display:block; +} + .query-totals {text-align:right;} .query-totals>span:not(:first-child) {margin-left:0.6em;} .query-totals .value {font-weight:bold;} |