blob: 00226adcaf4cbbbfcc1141aac23aacf6cef0817f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
@mixin v-valo-textarea ($primary-stylename: v-textarea) {
.#{$primary-stylename} {
@include v-valo-textarea-style;
width: $v-default-field-width;
}
.#{$primary-stylename}-readonly {
@include v-valo-textfield-readonly-style;
}
}
@mixin v-valo-textarea-style ($bevel-style: $v-textfield-bevel-style, $bevel-depth: $v-textfield-bevel-depth,
$shadow-style: $v-textfield-shadow-style, $shadow-depth: $v-textfield-shadow-depth,
$unit-size: $v-textfield-unit-size, $border-radius: $v-textfield-border-radius,
$background-color: $v-textfield-background-color) {
$unit-size: $unit-size or $v-unit-size;
@include v-valo-textfield-style($bevel-style: $bevel-style, $bevel-depth: $bevel-depth,
$shadow-style: $shadow-style, $shadow-depth: $shadow-depth,
$unit-size: $unit-size, $border-radius: $border-radius,
$background-color: $background-color);
display: block; // Fixes extra white-space under the textarea element
height: auto;
resize: none;
}
|