kartik-v / yii2-builder

Build forms (single or tabular) easily for Yii Framework 2.0.
http://demos.krajee.com/builder
Other
100 stars 50 forks source link

Tabular Form input checkbox #105

Closed mootensai closed 5 years ago

mootensai commented 8 years ago

Hi! I'm one of your admirer of your work currently i'm developing an enhanced gii that uses a lot of your extensions you might want to look here https://github.com/mootensai/yii2-enhanced-gii

When I'm trying my generator, I found this bug on rendering the checkbox, the check box is rendered not align with the other

Here's the screen shot on chrome kartik checkbox bug

Here's the screenshot on firefox kartik checkbox bug firefox

kartik-v commented 8 years ago

You need to debug - the CSS is getting broken somewhere...

mootensai commented 8 years ago

The problem is the CSS

.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

I change it to

.checkbox-inline input[type="checkbox"] {
  position: relative;
  margin-top: -9px \9;
  /*margin-left: -20px;*/
}
stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.