Bootstrap Clockpicker CSS in web2py -
i trying create widget input field using jquery clockpicker plugin. working style of plugin off. supposed this.
link of current working code.
is because of customized bootstrap css web2py use? if so, how can overide without affected current css creating admin panel of app around current css? extending default 'layout.html' provided web2py. also, correct way of using bootstrap css in web2py application.
i using web2py 2.9.11 version
the problem not due customizations of bootstrap due standard bootstrap 2 css rules, include following:
[class*="span"] { float: left; min-height: 1px; margin-left: 20px; }
the hours , minutes displayed in clockpicker have classes "clockpicker-span-hours" , "clockpicker-span-minutes", respectively, both of contain string "span" , therefore trigger float: left
rule shown above. presumably clockpicker designed bootstrap 3, not include above rule.
you'll either have upgrade site bootstrap 3, change above rule in current bootstrap 2 css (which may have other consequences), or modify markup or css of clockpicker.
Comments
Post a Comment