This commit is contained in:
N Venkatesh Naik 2015-03-17 16:07:59 +00:00
commit 4d9d4fbdd9
2 changed files with 16 additions and 0 deletions

View File

@ -29,6 +29,15 @@ select[multiple].form-control {
background-position: center bottom, center calc(~"100% - 1px"); background-position: center bottom, center calc(~"100% - 1px");
background-color: transparent; background-color: transparent;
background-color: rgba(0,0,0,0); background-color: rgba(0,0,0,0);
// fix to stop horizontal resize.
textarea& {
height: auto;
resize: vertical;
&[disabled] {
resize: vertical;
}
}
} }
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
background-color: transparent; background-color: transparent;

View File

@ -174,6 +174,13 @@ select.form-control {
} }
} }
textarea.form-control {
height: auto;
resize: vertical; // fix to stop horizontal resize.
&:disabled {
resize: vertical;
}
}
@mixin keyframe-input-highlight(){ @mixin keyframe-input-highlight(){
0% { 0% {