github.com/replicatedhq/ship@v0.55.0/web/init/src/scss/components/forms/textarea.scss (about) 1 .Textarea { 2 display: block; 3 box-sizing: border-box; 4 width: 100%; 5 border: 1px solid #C4C8CA; 6 border-radius: 4px; 7 outline: 0; 8 font-size: 14px; 9 font-weight: normal; 10 line-height: 22px; 11 color: #323232; 12 padding: 10px 11px 11px; 13 transition: border .2s; 14 resize: vertical; 15 } 16 .Textarea:active, 17 .Textarea:focus { 18 border-color: #4990E2; 19 } 20 .Textarea.has-error, 21 .Textarea.has-error:focus, 22 .Textarea.has-error:active { 23 border-color: #EE5042; 24 }