@gravityforms/components
Version:
UI components for use in Gravity Forms development. Both React and vanilla js flavors.
49 lines (42 loc) • 1.52 kB
CSS
.gform-admin .gform-input-wrapper--textarea, .gform-admin .gform-input-wrapper--textarea * {
box-sizing: border-box;
}
.gform-admin .gform-input--textarea {
-webkit-appearance: none;
background: #fff;
border: 1px solid #9092b0;
border-radius: 3px;
box-shadow: 0 0 0 transparent;
box-sizing: border-box;
color: #242748;
display: block;
font-family: inter, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
font-size: 0.875rem;
line-height: 2;
margin: 0.375rem 0;
outline: none;
padding: 0.25rem 0.75rem;
transition: box-shadow 0.15s ease, background-color 0.15s ease;
width: 100%;
}
.gform-admin .gform-input--textarea:focus {
border: 1px solid #175cff;
box-shadow: 0 0.125rem 0.0675rem rgba(28, 31, 63, 0.0634624), 0 0 0 2px #bed8ed;
color: #242748;
}
.gform-admin .gform-input--textarea::-moz-placeholder {
color: #5b5e80;
font-family: inter, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
font-size: 0.875rem;
font-weight: 400;
}
.gform-admin .gform-input--textarea::placeholder {
color: #5b5e80;
font-family: inter, -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
font-size: 0.875rem;
font-weight: 400;
}
.gform-admin .gform-input--textarea:disabled {
background: #f4f5fb;
}
/*# sourceMappingURL=textarea.css.map */