Jump to content

how to change TUniCalendarPanel cell background color


charles13115255

Recommended Posts

21 hours ago, Sherzod said:

Hello,

Maybe you should try this?

CustomCSS ->

.x-calendar-weeks-weekend-cell {
    background-color: #e9f0ff;
}

 

Hi~~ Sir,

thank you for your answer....

but,

This approach will make Saturday and Sunday the same color...
Can I specify one color for Saturday and another color for Sunday?

thanks again.

have a nice day~ 

Link to comment
Share on other sites

Hello,

39 minutes ago, charles13115255 said:

Can I specify one color for Saturday and another color for Sunday?

Okay, you can try this approach:

1. CustomCSS ->

.x-calendar-weeks-weekend-cell {
    background-color: #e9f0ff;
}

2. CustomCSS ->

/* "Saturday" */
td.x-calendar-weeks-weekend-cell:nth-last-child(2) {
    background-color: #e9f0ee;
}
/* "Sunday" */
td.x-calendar-weeks-weekend-cell:nth-last-child(1) {
    background-color: #e9f0ff;
}

Result:

image.png.568d6f06a52fa92d7d9077a5ddbe66a3.png

* - But of course this solution is for MonthView

Link to comment
Share on other sites

On 11/10/2023 at 2:54 PM, Sherzod said:

Hello,

Okay, you can try this approach:

2. CustomCSS ->

/* "Saturday" */
td.x-calendar-weeks-weekend-cell:nth-last-child(2) {
    background-color: #e9f0ee;
}
/* "Sunday" */
td.x-calendar-weeks-weekend-cell:nth-last-child(1) {
    background-color: #e9f0ff;
}

Result:

image.png.568d6f06a52fa92d7d9077a5ddbe66a3.png

* - But of course this solution is for MonthView

 

morning~ 

very well thank you~

best regards.

  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...