Opened 19 years ago
Closed 16 years ago
#3131 closed defect (fixed)
links in report should not be displayed as block
Reported by: | Owned by: | Remy Blank | |
---|---|---|---|
Priority: | normal | Milestone: | 0.11.2 |
Component: | report system | Version: | 0.9.5 |
Severity: | minor | Keywords: | css |
Cc: | itsme@… | Branch: | |
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
the 'display:block' css attribute causes a newline after every link in a 'description' column in the report view.
this can be fixed by removing line 36 from report.css:
.tickets tbody td :link, .tickets tbody td :visited { display: block }
i only checked this with firefox 1.5, not sure how this works with other browsers.
Attachments (0)
Change History (7)
comment:1 by , 18 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:2 by , 18 years ago
It is not the same issue, #2683 is probably an issue with spaces in the templates.
this ticket is an issue with how a browser renders the html+css
example:
when i have a report with a field named 'description', like this:
select type||' #'||id||' '||description||' 'as description, filename, size, time as t, author, ipnr from attachment where type='ticket'
and a link in that field, the display: block
directive causes this to be rendered like this:
ticket #20 example executable
instead of like this:
ticket #20 example executable
comment:4 by , 18 years ago
Component: | browser → report system |
---|---|
Keywords: | css added |
Milestone: | → 0.11 |
Owner: | changed from | to
Severity: | normal → minor |
Status: | reopened → new |
comment:5 by , 16 years ago
Owner: | changed from | to
---|
This has been fixed in trunk in [7563]. Should I also backport it to 0.11-stable?
comment:6 by , 16 years ago
Milestone: | 0.11.3 → 0.11.2 |
---|
Just the fix to report.css? Yes, I think it's OK to backport.
comment:7 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Backported to 0.11-stable in [7576].
Duplicate of #2683.