imagina Posted August 17, 2011 Posted August 17, 2011 Hello Please advice me how specify the event background colors where CalendarId property is greather than 3, because his font color is white and the background too. I defined 7 calendars in Calendars property. With CalendarId = 1 the background is blue; with CalendarId = 2, green, and CalendarId = 3, brown. But CalendarId 4 to 7 the background color is white. Editing a file of ext-3.3.0 folder may be? Thanks Quote
Administrators Farshad Mohajeri Posted August 20, 2011 Administrators Posted August 20, 2011 Add this to ServerModule.CustomCss <style type="text/css"> .ext-color-4 { color:#444; } .ext-color-5 { color:#555; } </style> Quote
Administrators Farshad Mohajeri Posted August 20, 2011 Administrators Posted August 20, 2011 Here is the complete CSS: <style type="text/css"> .ext-color-4, .ext-ie .ext-color-4-ad, .ext-opera .ext-color-4-ad { color: #306da6; } .ext-cal-day-col .ext-color-4, .ext-dd-drag-proxy .ext-color-4, .ext-color-4-ad, .ext-color-4-ad .ext-cal-evm, .ext-color-4 .ext-cal-picker-icon, .ext-color-4-x dl, .ext-color-4-x .ext-cal-evb { background: #306da6; } .ext-color-4-x .ext-cal-evb, .ext-color-4-x dl { border-color: #29527A; } </style> You can add as many as you like by replacing 4s with 5s, 6s, ... Aboce CSS replicates colors of Calendar1. Change them with your favorite colors. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.