Author: peterdd (peterdd) Committer: Nikita Popov (nikic) Date: 2021-10-21T11:24:05+02:00
Commit: https://github.com/php/web-bugs/commit/7dac397fc20fa76d9d8aa352dcc5b981a871a5b7 Raw diff: https://github.com/php/web-bugs/commit/7dac397fc20fa76d9d8aa352dcc5b981a871a5b7.diff top align selects on report.php With the new flexibility of resizing the package category select the appearing of the 2 selects side by side on https://bugs.php.net/report.php might look a bit odd. This PR fixes it by align the 2 selects always to the top. Changed paths: M www/css/style.css Diff: diff --git a/www/css/style.css b/www/css/style.css index aa87f59c..4423814b 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -158,6 +158,7 @@ input { select { resize: both; + vertical-align:top; } textarea { -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
