demarches-normaliennes/app/assets/stylesheets/description.scss
Xavier J 3a4beadbd1 Order champs by 'order_place' on description page
Champs dimension of textarea form
2015-11-03 16:52:58 +01:00

45 lines
595 B
SCSS

@import "bootstrap";
@import "bootstrap-datepicker3";
#description_page #liste_champs{
h4{
margin-top: 35px;
}
}
.type_champs-text {
@extend .col-md-6;
@extend .col-lg-6;
input[type='text'] {
width: 100%;
}
}
.type_champs-textarea {
@extend .col-md-8;
@extend .col-lg-8;
textarea.form-control {
width:100%;
height: 133px;
}
}
.type_champs-number {
@extend .col-md-3;
@extend .col-lg-3;
input[type='number']{
width: 100%;
}
}
.type_champs-datetime {
@extend .col-md-2;
@extend .col-lg-2;
input[type='number']{
width: 100%;
}
}