Fank / jira-chrome-extension

Automatically exported from code.google.com/p/jira-chrome-extension
0 stars 0 forks source link

Custom Priority Icons Aren't Scaled #69

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Add a custom priority icon that isn't the same size as the others (say, 
600x600px)
2. View in JIRA: the icon scales fine
3. View in jira-chrome-extension... it takes up the entire window

What is the expected output? What do you see instead?

This column in particular, or any column including icons, should have a maximum 
size that leaves the table view readable.  With this column, there are specific 
dimensions used throughout JIRA that can easily be adhered to.

What version of the product are you using? On what operating system?

I am using version 2.0.1.1 on Ubuntu 12.04, against an intranet hosted JIRA 6.2

Please provide any additional information below.

N/A

Original issue reported on code.google.com by charles....@leadkarma.com on 14 Jul 2014 at 12:54

GoogleCodeExporter commented 8 years ago
In fact, it's a pretty easy problem to fix.  I noticed you have the rule:

table.display td.icon {
        max-width:24px;
}

If you just change this rule to:

table.display td.icon,
table.display td.icon img {
        max-width:24px;
}

Everything will work just fine.

Original comment by charles....@leadkarma.com on 14 Jul 2014 at 12:57