Fix the trailing divider after the "Upload" tab in the SCORM navbar
Description
Removing the trailing divider is actually a little weird, because it's actually a border right on the previous item. This is because the 'Validation' link in the navBar has been set to not display because the UI is not implemented.
As such, there's a hidden span in another li after the 'Upload' menu item, and because it's not the last li in the ul, it gets a border right.
Because you cannot tell Wicket to not render a component, the only solution is to comment out this mark-up and corresponding Java code for the "Validate" menu item until it has been implemented. In this way, the "Upload" item becomes the last li in the ul, and therefore does not get a border right from the CSS pseudo class.
Removing the trailing divider is actually a little weird, because it's actually a border right on the previous item. This is because the 'Validation' link in the navBar has been set to not display because the UI is not implemented.
As such, there's a hidden span in another li after the 'Upload' menu item, and because it's not the last li in the ul, it gets a border right.
Because you cannot tell Wicket to not render a component, the only solution is to comment out this mark-up and corresponding Java code for the "Validate" menu item until it has been implemented. In this way, the "Upload" item becomes the last li in the ul, and therefore does not get a border right from the CSS pseudo class.