This is a migrated thread and some comments may be shown as answers.

I want to change the color of during the movement of the splitter bar

2 Answers 297 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Tomonao
Top achievements
Rank 1
Tomonao asked on 02 Apr 2015, 11:08 AM
How can I change the color if

2 Answers, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 03 Apr 2015, 02:46 PM
Hi Tomonao,

It seems that your forum post has been submitted before it is finished. Please explain once again what are you trying to do.

If you want to change the styling of the focused splitbar, you can use:

.k-splitter .k-splitbar.k-state-focused
{
   background-color: #f00;
}


If you want to change the styling of the dragged scrollbar, you can use:

.k-splitter .k-ghost-splitbar
{
   backgorund-color: #ff0;
}


The dragged scrollbar is the phantom splitbar, that the user is moving during pane resizing. The focused splitbar is the one that stays static and shows the dragged splitbar's old position.


Regards,
Dimo
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Tomonao
Top achievements
Rank 1
answered on 04 Apr 2015, 01:17 AM

In the following css specified, it was confirmed that it works as expected.

Thank you!

.k-splitter .k-ghost-splitbar
{
    background-color: gray;
    border: none;
}

Tags
Splitter
Asked by
Tomonao
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Tomonao
Top achievements
Rank 1
Share this question
or