mirror of
https://github.com/jgthms/bulma
synced 2026-03-19 11:54:30 -07:00
Convert sass files to scss files
This commit is contained in:
99
sass/form/input-textarea.scss
Normal file
99
sass/form/input-textarea.scss
Normal file
@@ -0,0 +1,99 @@
|
||||
$textarea-padding: $control-padding-horizontal !default;
|
||||
$textarea-max-height: 40em !default;
|
||||
$textarea-min-height: 8em !default;
|
||||
|
||||
$textarea-colors: $form-colors !default;
|
||||
|
||||
%input-textarea {
|
||||
@extend %input;
|
||||
|
||||
box-shadow: $input-shadow;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
|
||||
&[readonly] {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
// Colors
|
||||
@each $name, $pair in $textarea-colors {
|
||||
$color: nth($pair, 1);
|
||||
|
||||
&.is-#{$name} {
|
||||
border-color: $color;
|
||||
|
||||
&:focus,
|
||||
&.is-focused,
|
||||
&:active,
|
||||
&.is-active {
|
||||
box-shadow: $input-focus-box-shadow-size bulmaRgba($color, 0.25);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Sizes
|
||||
&.is-small {
|
||||
@include control-small;
|
||||
}
|
||||
|
||||
&.is-medium {
|
||||
@include control-medium;
|
||||
}
|
||||
|
||||
&.is-large {
|
||||
@include control-large;
|
||||
}
|
||||
|
||||
// Modifiers
|
||||
&.is-fullwidth {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
&.is-inline {
|
||||
display: inline;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.input {
|
||||
@extend %input-textarea;
|
||||
|
||||
&.is-rounded {
|
||||
border-radius: $radius-rounded;
|
||||
padding-left: calc(#{$control-padding-horizontal} + 0.375em);
|
||||
padding-right: calc(#{$control-padding-horizontal} + 0.375em);
|
||||
}
|
||||
|
||||
&.is-static {
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
box-shadow: none;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.textarea {
|
||||
@extend %input-textarea;
|
||||
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
min-width: 100%;
|
||||
padding: $textarea-padding;
|
||||
resize: vertical;
|
||||
|
||||
&:not([rows]) {
|
||||
max-height: $textarea-max-height;
|
||||
min-height: $textarea-min-height;
|
||||
}
|
||||
|
||||
&[rows] {
|
||||
height: initial;
|
||||
}
|
||||
|
||||
// Modifiers
|
||||
&.has-fixed-size {
|
||||
resize: none;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user