Skip to content

Instantly share code, notes, and snippets.

@RussellHite
Created October 25, 2017 16:46
Show Gist options
  • Save RussellHite/defccf74dc98ec4cbb0e1f28e0218097 to your computer and use it in GitHub Desktop.
Save RussellHite/defccf74dc98ec4cbb0e1f28e0218097 to your computer and use it in GitHub Desktop.
A mixin partial for limiting the width of input fields for Mendix
@mixin field-width($number, $side-padd) {
@for $i from 1 through $number{
.field-width-#{$i}.form-group .form-control, .field-width-#{$i}[class*="mx-name-textBox"] .form-control{
width: calc( #{$i} * 1em + #{$side-padd});
}
}
}
// Add this line in the inputs partial
//@include field-width($number: 100, $side-padd:16px);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment