
// Textarea input
// --------------------------------------------------
@min-height: 82px;

.form-group {
  textarea {
    cursor: default !important;
    resize: none;
    min-height: @min-height;
    &[readonly], &.readonly {
      min-height: @min-height;
      height: auto;
      overflow-y: auto;
      margin: 4px 0;
    }
  }
}
//
//.scroll-wrapper {
//  &.form-control {
//    &.readonly{
//      min-height: @min-height;
//      margin-top: 4px;
//    }
//  }
//  > .scroll-content {
//    &.readonly {
//      width: 100% !important;
//      height: 100% !important;
//    }
//  }
//}
//@-moz-document url-prefix() {
//  .scroll-wrapper {
//    > .scroll-content {
//      &.readonly {
//        overflow: hidden !important;
//      }
//    }
//  }
//}