Using JSMin I noticed my styling is incorrect. This is caused because spaces are deleted between closing brackets and dots.
The following line:
ganntContainer[data-cellperiod="week"] .mainLeft { top: 158px; }
is transformed to:
ganntContainer[data-cellperiod="week"].mainLeft{ top: 158px; }
Using JSMin I noticed my styling is incorrect. This is caused because spaces are deleted between closing brackets and dots.
The following line:
ganntContainer[data-cellperiod="week"] .mainLeft { top: 158px; }
is transformed to:
ganntContainer[data-cellperiod="week"].mainLeft{ top: 158px; }