mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
37 lines
641 B
Plaintext
37 lines
641 B
Plaintext
|
|
.ta{
|
|
overflow: auto;
|
|
resize: none;
|
|
|
|
padding: @textarea-padding;
|
|
border: @textarea-border;
|
|
border-radius: @textarea-border-radius;
|
|
background-image: @textarea-gradient;
|
|
margin: 0;
|
|
text-overflow: ellipsis;
|
|
box-shadow: @textarea-box-shadow;
|
|
|
|
font-size: @textarea-font-size;
|
|
color: @textarea-color;
|
|
font-family: @textarea-font-family;
|
|
outline: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.taFocus{
|
|
}
|
|
|
|
.taDisabled{
|
|
border: @textarea-disabled-border;
|
|
color: @textarea-disabled-color;
|
|
}
|
|
|
|
.taInitial{
|
|
color : gray;
|
|
}
|
|
|
|
.taError{
|
|
border: 2px solid #ffb500;
|
|
padding : 5px;
|
|
}
|
|
|