diff options
author | Frédéric Buclin <LpSolit@netscape.net> | 2017-04-18 23:22:54 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@netscape.net> | 2017-04-18 23:22:54 +0200 |
commit | 20668e9e2dbee14347069c025c246639ed9273db (patch) | |
tree | c5dc721331a0854fa2c8a8b523ac0d85a5a2bb96 | |
parent | 67f7d865283a0463b829a2d1d46941c86e10f391 (diff) | |
download | bugs-20668e9e2dbee14347069c025c246639ed9273db.tar bugs-20668e9e2dbee14347069c025c246639ed9273db.tar.gz bugs-20668e9e2dbee14347069c025c246639ed9273db.tar.bz2 bugs-20668e9e2dbee14347069c025c246639ed9273db.tar.xz bugs-20668e9e2dbee14347069c025c246639ed9273db.zip |
Prevent wrapping of the colored disk besides the bug ID in the buglist
-rw-r--r-- | skins/standard/buglist.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/skins/standard/buglist.css b/skins/standard/buglist.css index 7256d285e..bebc4b465 100644 --- a/skins/standard/buglist.css +++ b/skins/standard/buglist.css @@ -149,6 +149,13 @@ span.bz_unknown_since_last_visit:before { content: "\25CF"; font-size: large; } +/* Prevent wrapping of the colored disk besides the bug ID. */ +tr.bz_new_since_last_visit td.first-child, +tr.bz_updated_since_last_visit td.first-child, +tr.bz_up_to_date_since_last_visit td.first-child, +tr.bz_unknown_since_last_visit td.first-child { + white-space: nowrap; +} td.bz_estimated_time_column, td.bz_remaining_time_column, |