WebIce / jsgantt

Automatically exported from code.google.com/p/jsgantt
0 stars 0 forks source link

Style Sheet Formatting is Wrong #89

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
JSGantt Version: 1.2
Browser: Any
OS: Any

Please provide any additional information below.
There's some bad formatting in jsgantt.css:

'//' does not denote a comment, use '/*' and '*/'.

'..' means nothing. A class designation starts with a single period '.'.

Many of your definitions are missing the final semi-colon. This can result in 
the style immediately following being ignored or misread.

It's also good practice that if you're only going to declare one part of a 
multi-part property, such as 'BORDER-RIGHT: #ffffff;', you should use the 
specific property name, such as 'BORDER-RIGHT-COLOR: #ffffff;'

After fixing these issues your system worked fine. You might find that fixing 
these issues helps with other issues you mention in the comments in the .css 
file.

Original issue reported on code.google.com by rbrunsk...@gmail.com on 12 Oct 2010 at 6:00

GoogleCodeExporter commented 8 years ago
Thanks a lot!

Original comment by tra...@gmail.com on 17 Dec 2011 at 2:43