Icon sizes (background-size)
Posted: Mon Aug 29, 2011 2:20 pm
It's pretty cool with the standard theme using the favicons of the tracker. But I had the problem the one tracker was serving a 32px favicon, which means it extends the height of the table cell.
To solve this problem I applied one of the new CSS3 features:
Pretty nasty hack, but the only way I found out how this can be fixed. If those rules would be made in the correct CSS file you could leave the !important hack.
Maybe a good idea for future versions of the skins.
To solve this problem I applied one of the new CSS3 features:
Code: Select all
.x-grid3-cell-inner div {
-moz-background-size: 16px 16px !important;
-o-background-size: 16px 16px !important;
-webkit-background-size: 16px 16px !important;
background-size: 16px 16px !important;
}
Maybe a good idea for future versions of the skins.
