Paul-Henri
Top achievements
Rank 1
Paul-Henri
asked on 02 Apr 2014, 12:14 PM
Hi everybody,
I'm very stucked for a very simple thing, I cannot remove the line of the bottom of the drawer in my app (The one hilight yellow).
Is anybody as any idea? I try everything, remove css, add css, nothing works... It drives me crazy :/
Thank you very much for your help.
I'm very stucked for a very simple thing, I cannot remove the line of the bottom of the drawer in my app (The one hilight yellow).
Is anybody as any idea? I try everything, remove css, add css, nothing works... It drives me crazy :/
Thank you very much for your help.
6 Answers, 1 is accepted
0
Hi Paul,
Can you please provide a runnable sample that we can inspect using the browser developer tools and find a way to hide it?
Thank you in advance for this.
Regards,
Kiril Nikolov
Telerik
Can you please provide a runnable sample that we can inspect using the browser developer tools and find a way to hide it?
Thank you in advance for this.
Regards,
Kiril Nikolov
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Paul-Henri
Top achievements
Rank 1
answered on 02 Apr 2014, 12:39 PM
Here is the problem :
http://crea.anopetia.com/_default
You can test it as you wish.
http://crea.anopetia.com/_default
You can test it as you wish.
0
Paul-Henri
Top achievements
Rank 1
answered on 02 Apr 2014, 12:41 PM
Login : admin
mdp : uoh
mdp : uoh
0
Hello Paul,
The line that you see is the border of the last element in the ListView. It set with:
If you override this property then the line should be gone.
Regards,
Kiril Nikolov
Telerik
The line that you see is the border of the last element in the ListView. It set with:
.km-ios
7
.km-list>li:last-child {
box-shadow:
inset
0
-1px
0
rgba(
180
,
180
,
180
,
0.5
);
-webkit-box-shadow:
inset
0
-1px
0
rgba(
180
,
180
,
180
,
0.5
);
If you override this property then the line should be gone.
Regards,
Kiril Nikolov
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Paul-Henri
Top achievements
Rank 1
answered on 02 Apr 2014, 02:03 PM
So I just found a solution :
$(".drawerGroup .km-list li:last").append("<div class='overlay' style='position:absolute;width:100%;background:#f9f9f9; margin-top:5px; left:0;'> </div>");
But yours :
$(".drawerGroup .km-list li:last").css({"box-shadow":"none","-webkit-box-shadow":"none"});
Is better
Thank you very much : => Resolved ;)!
$(".drawerGroup .km-list li:last").append("<div class='overlay' style='position:absolute;width:100%;background:#f9f9f9; margin-top:5px; left:0;'> </div>");
But yours :
$(".drawerGroup .km-list li:last").css({"box-shadow":"none","-webkit-box-shadow":"none"});
Is better
Thank you very much : => Resolved ;)!
0
Hello Paul,
I am happy to hear that the problem is resolved.
In case you have any further questions, please do not hesitate to contact us.
Regards,
Kiril Nikolov
Telerik
I am happy to hear that the problem is resolved.
In case you have any further questions, please do not hesitate to contact us.
Regards,
Kiril Nikolov
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!