taitems / jQuery.Gantt

jQuery Gantt Chart
http://taitems.github.io/jQuery.Gantt/
MIT License
952 stars 304 forks source link

Duplicate icons on buttons? #232

Closed rgbinnovation closed 4 years ago

rgbinnovation commented 5 years ago

Hi, I'm getting duplicate buttons on icons? Has anyone seen this before?

Screen Shot 2019-08-13 at 10 47 09
usmonster commented 5 years ago

Hi @rgbinnovation! Thanks for reporting this. It looks & sounds similar to #230, caused by some CSS interference by bootstrap.

Can you please create a jsFiddle that demonstrates this issue? It will help to know if it's an issue on the plug-in's side or elsewhere. Thanks!

candreug commented 4 years ago

Any solution to this issue? I have the same issue and the days rows are example

usmonster commented 4 years ago

Hi @carolag15! Please see my previous comment. :)

If you can provide more information (eg., are you using Bootstrap? If so, what version?), or provide a link to a live page that demonstrates the issue (screenshots aren't as helpful), then I might be able to answer you.

Since there has been no new information in a couple months, I'll close this issue for now. I may reopen it if there's more information.

Thanks for reporting the issue!

quevon24 commented 3 years ago

Thanks for the plugin, the problem is with bootstrap class: nav-link with the padding, that's what makes the icon duplicates

.nav-link { display: block; padding: .5rem 1rem; }

Just add this style:

.fn-gantt .nav-link { padding: 0 !important; }