SwarmOnline / Ext.ux.TouchCalendar

Sencha Touch Calendar component
113 stars 47 forks source link

SCSS source does not match CSS #16

Closed trevoriancox closed 11 years ago

trevoriancox commented 11 years ago

In TouchCalendarSimpleEvents.scss,

.ux-calendar
 {

must be changed to

.touch-calendar-view
{

to result in the same CSS as in github.

Likewise, in TouchCalendarEvents.scss,

 table.ux-calendar*/

should be

.touch-calendar-view
{
ajinkyac commented 11 years ago

Would there be a fix made available in near future?

ajinkyac commented 11 years ago

I have done a temporary fix for the event-bars

/-----------------------------------------------------------------/ $bg-color: #B4CAEF; @import "Ext.ux.TouchCalendarEvents";

div.event-bar { background-color: $bg-color; border: 1px solid #485e7e; color: #000; font-size: 11px; font-weight: normal; height: 20px; overflow: hidden; padding: 0 0 0 8px; position: absolute; -webkit-border-radius: 4px; z-index: 100; text-shadow: none; text-align: left;

&.event-bar-selected { background-color: #57ACF2; } } /-----------------------------------------------------------------/