Sha256: 2869a96f6f45ba6f6e012dbf6ac0bedcc035b9852c05760a4f17f10355edf6c1
Contents?: true
Size: 1.51 KB
Versions: 14
Compression:
Stored size: 1.51 KB
Contents
@import "../error-message/index"; @import "../hint/index"; @import "../label/index"; @include govuk-exports("govuk/component/textarea") { .govuk-textarea { @include govuk-font($size: 19, $line-height: 1.25); box-sizing: border-box; // should this be global? display: block; width: 100%; min-height: 40px; @include govuk-responsive-margin(6, "bottom"); padding: govuk-spacing(1); resize: vertical; border: $govuk-border-width-form-element solid $govuk-input-border-colour; border-radius: 0; -webkit-appearance: none; &:focus { outline: $govuk-focus-width solid $govuk-focus-colour; // Ensure outline appears outside of the element outline-offset: 0; // Double the border by adding its width again. Use `box-shadow` to do // this instead of changing `border-width` (which changes element size) and // since `outline` is already used for the yellow focus state. box-shadow: inset 0 0 0 $govuk-border-width-form-element; @include govuk-if-ie8 { // IE8 doesn't support `box-shadow` so double the border with // `border-width`. border-width: $govuk-border-width-form-element * 2; } } } .govuk-textarea--error { border: $govuk-border-width-form-element-error solid $govuk-error-colour; &:focus { border-color: $govuk-input-border-colour; // Remove `box-shadow` inherited from `:focus` as `textarea--error` // already has the thicker border. box-shadow: none; } } }
Version data entries
14 entries across 14 versions & 2 rubygems