Closed (fixed)
Project:
Ubercart
Version:
6.x-2.4
Component:
Code
Priority:
Minor
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
19 May 2011 at 22:49 UTC
Updated:
15 Jul 2011 at 18:11 UTC
Jump to comment: Most recent file
Comments
Comment #1
longwaveI can't even see anywhere that Ubercart outputs <h3 class="title"> - the only use of h3 seems to be for attribute titles, and they don't have a class specified - so it does look like this can be removed entirely. Are there any other selectors that should be removed at the same time?
Comment #2
balsamaPossibly this one:
.node-form tbody {
border: none;
margin: 0;
}
Is it there to fix a problem when editing/creating products perhaps?
Comment #3
longwaveThat one fixes an annoying rule in /modules/system/system.css:
The price fields on the node edit form are displayed using a table, and the top border is unnecessary - bad semantics, but it looks like we can change
.node-form tbodyto.node-form .product-field tbodyat least.Comment #4
balsamaOh yeah. I know that rule.
Here's a patch that removes h3.title and it's rules from uc_product.css
Comment #5
longwaveComment #7
longwaveCommitted to both branches.