diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-17 23:10:43 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-17 23:10:43 +0100 |
commit | 4fe9898313a06ffa0558cbafdeed3b4d6819ac3e (patch) | |
tree | ed47308d0d47c7b4a995e1390617e693c2e1b8d9 /skins | |
parent | 41016572ac532949743ed56bd76b8cd0b5928aa4 (diff) | |
download | bugzilla-4fe9898313a06ffa0558cbafdeed3b4d6819ac3e.tar.gz bugzilla-4fe9898313a06ffa0558cbafdeed3b4d6819ac3e.tar.xz |
Bug 820766: The requester and requestee fields in the Requests page are way too small in narrow windows
r=dkl a=LpSolit
Diffstat (limited to 'skins')
-rw-r--r-- | skins/standard/buglist.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/skins/standard/buglist.css b/skins/standard/buglist.css index b4920c609..6d23fc8bb 100644 --- a/skins/standard/buglist.css +++ b/skins/standard/buglist.css @@ -114,3 +114,18 @@ td.bz_total { .bz_short_desc_column a, .bz_short_short_desc_column a { color: inherit; } + +/* The "filtering" table is specific to request.cgi. + * Same for the "requests" class used for tables. */ + +#filtering #requester, #filtering #requestee { + min-width: 8em; +} + +#filtering th { + text-align: right; +} + +table.requests th { + text-align: left; +} |