Author: peterdd (peterdd) Committer: GitHub (web-flow) Pusher: cmb69 Date: 2021-09-17T13:10:49+02:00
Commit: https://github.com/php/web-bugs/commit/5589a716dc3b691eb6bdd8ba74c8d4389642ada6 Raw diff: https://github.com/php/web-bugs/commit/5589a716dc3b691eb6bdd8ba74c8d4389642ada6.diff Make multiple selects resizable Just wanted report a bug on bugs.php.net, but letting the user scroll 460 entries (optgroups+options) in a 6 line height tiny multiselect in the bug search is torture. Closes GH-84. Changed paths: M www/css/style.css Diff: diff --git a/www/css/style.css b/www/css/style.css index 293147a3..aa87f59c 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -156,6 +156,10 @@ input { font-family: verdana,arial,helvetica,sans-serif; } +select { + resize: both; +} + textarea { font-family: "andale mono", "monotype.com", "courier new", monospace; } -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
