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

Splitter Width

1 Answer 361 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
gdycus
Top achievements
Rank 1
gdycus asked on 22 Nov 2011, 11:07 PM
How can I change the width of the splitter bars so they are easier to target on an iPad?

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 23 Nov 2011, 08:53 AM
Hello Grady,

Checking with Firebug will reveal that the width of the splitbars is determined by the following CSS rules in kendo.common.css. You can either modify the file or override the width/height styles.


.k-splitter .k-ghost-splitbar-horizontal,
.k-splitter .k-splitbar-horizontal
{
    top: 0;
    width: 5px;
    border-width: 0 1px;
    background-repeat: repeat-y;
}

.k-ghost-splitbar-vertical,
.k-splitbar-vertical
{
    left: 0;
    height: 5px;
    border-width: 1px 0;
    background-repeat: repeat-x;
}


Regards,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Splitter
Asked by
gdycus
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or