jquery-week-calendar icon indicating copy to clipboard operation
jquery-week-calendar copied to clipboard

Event position issues while using Twitter bootstrap

Open mreyeros opened this issue 13 years ago • 8 comments

Has anyone successfully implemented the calendar while using Twitter bootstrap? I am having event placement issues and am assuming that there must be some conflict between the bootstrap css and the week calendar css

mreyeros avatar Nov 02 '11 00:11 mreyeros

I'm using it without problems.

josegm avatar Nov 04 '11 11:11 josegm

dont know if this is still an issue - but it seems to work fine with bootstrap v2

jamesgiang avatar Mar 21 '12 03:03 jamesgiang

not working with jQuery.weekCalendar v2.0-dev and Bootstrap v2.3.1.

here is the error: Error: TypeError: $calendarContainer.find(...).buttonset is not a function

maraya avatar Apr 10 '13 19:04 maraya

Solved: Just add button widget support to your custom build (jquery UI)

maraya avatar Apr 10 '13 19:04 maraya

mreyeros, do you solved the problem? I'm handling with the same problem using bootstrap 3.

fracon avatar Apr 13 '14 00:04 fracon

The layout is messed up by box-sizing: border-box. A fix is to add the following css after bootstrap css has been loaded:

*, *:before, *:after { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; }

This will break some bootstrap components on the same page more info: http://stackoverflow.com/questions/19109470/twitter-bootstrap-box-sizing-ruined-my-layout

tp- avatar Jan 08 '15 10:01 tp-

Good "tp", that was the solution if you use bootstrap version 3

cristogomez avatar Jan 24 '17 17:01 cristogomez

Adding the below style on the page helped me solve the layout issue.

table * { -webkit-box-sizing: content-box !important; -moz-box-sizing: content-box !important; box-sizing: content-box !important; }

hishhash2 avatar Oct 29 '20 07:10 hishhash2