References to JPG vs. PNG in demo_table_jui.css

References to JPG vs. PNG in demo_table_jui.css

timtuckertimtucker Posts: 48Questions: 0Answers: 0
edited July 2012 in General
Noticed that the following lines in demo_table_jui.css (from 1.9.2) were being flagged as broken links in my IDE -- sure enough there are no .jpg images in the images directory. Should those be pointing to the .png files?

[code]
.paginate_disabled_previous {
background-image: url('../images/back_disabled.jpg');
}

.paginate_enabled_previous {
background-image: url('../images/back_enabled.jpg');
}

.paginate_disabled_next {
background-image: url('../images/forward_disabled.jpg');
}

.paginate_enabled_next {
background-image: url('../images/forward_enabled.jpg');
}
[/code]

Replies

  • allanallan Posts: 63,542Questions: 1Answers: 10,476 Site admin
    Thanks for pointing that out. That CSS wasn't actually used when working with ThemeRoller since those class names are applied to the table at all. So I've just removed that CSS block entirely (change set a79e512).

    Thanks,
    Allan
This discussion has been closed.