| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354 | 
							- /* Text Inputs + Textarea
 
-    ========================================================================== */
 
- /* Style Placeholders */
 
- ::placeholder {
 
-   color: $placeholder-text-color;
 
- }
 
- /* Text inputs */
 
- input:not([type]),
 
- input[type=text]:not(.browser-default),
 
- input[type=password]:not(.browser-default),
 
- input[type=email]:not(.browser-default),
 
- input[type=url]:not(.browser-default),
 
- input[type=time]:not(.browser-default),
 
- input[type=date]:not(.browser-default),
 
- input[type=datetime]:not(.browser-default),
 
- input[type=datetime-local]:not(.browser-default),
 
- input[type=tel]:not(.browser-default),
 
- input[type=number]:not(.browser-default),
 
- input[type=search]:not(.browser-default),
 
- textarea.materialize-textarea {
 
-   // General Styles
 
-   background-color: transparent;
 
-   border: none;
 
-   border-bottom: $input-border;
 
-   border-radius: 0;
 
-   outline: none;
 
-   height: $input-height;
 
-   width: 100%;
 
-   font-size: $input-font-size;
 
-   margin: $input-margin;
 
-   padding: $input-padding;
 
-   box-shadow: none;
 
-   box-sizing: content-box;
 
-   transition: box-shadow .3s, border .3s;
 
-   // Disabled input style
 
-   &:disabled,
 
-   &[readonly="readonly"] {
 
-     color: $input-disabled-color;
 
-     border-bottom: $input-disabled-border;
 
-   }
 
-   // Disabled label style
 
-   &:disabled+label,
 
-   &[readonly="readonly"]+label {
 
-     color: $input-disabled-color;
 
-   }
 
-   // Focused input style
 
-   &:focus:not([readonly]) {
 
-     border-bottom: 1px solid $input-focus-color;
 
-     box-shadow: 0 1px 0 0 $input-focus-color;
 
-   }
 
-   // Focused label style
 
-   &:focus:not([readonly])+label {
 
-     color: $input-focus-color;
 
-   }
 
-   // Hide helper text on data message
 
-   &.valid ~ .helper-text[data-success],
 
-   &:focus.valid ~ .helper-text[data-success],
 
-   &.invalid ~ .helper-text[data-error],
 
-   &:focus.invalid ~ .helper-text[data-error] {
 
-     @extend %hidden-text;
 
-   }
 
-   // Valid Input Style
 
-   &.valid,
 
-   &:focus.valid {
 
-     @extend %valid-input-style;
 
-   }
 
-   // Custom Success Message
 
-   &.valid ~ .helper-text:after,
 
-   &:focus.valid ~ .helper-text:after {
 
-     @extend %custom-success-message;
 
-   }
 
-   &:focus.valid ~ label {
 
-     color: $input-success-color;
 
-   }
 
-   // Invalid Input Style
 
-   &.invalid,
 
-   &:focus.invalid {
 
-     @extend %invalid-input-style;
 
-   }
 
-   // Custom Error message
 
-   &.invalid ~ .helper-text:after,
 
-   &:focus.invalid ~ .helper-text:after {
 
-     @extend %custom-error-message;
 
-   }
 
-   &:focus.invalid ~ label {
 
-     color: $input-error-color;
 
-   }
 
-   // Full width label when using validate for error messages
 
-   &.validate + label {
 
-     width: 100%;
 
-   }
 
-   // Form Message Shared Styles
 
-   & + label:after {
 
-     @extend %input-after-style;
 
-   }
 
- }
 
- /* Validation Sass Placeholders */
 
- %valid-input-style {
 
-   border-bottom: 1px solid $input-success-color;
 
-   box-shadow: 0 1px 0 0 $input-success-color;
 
- }
 
- %invalid-input-style {
 
-   border-bottom: $input-invalid-border;
 
-   box-shadow: 0 1px 0 0 $input-error-color;
 
- }
 
- %hidden-text {
 
-   color: transparent;
 
-   user-select: none;
 
-   pointer-events: none;
 
- }
 
- %custom-success-message {
 
-   content: attr(data-success);
 
-   color: $input-success-color;
 
- }
 
- %custom-error-message {
 
-   content: attr(data-error);
 
-   color: $input-error-color;
 
- }
 
- %input-after-style {
 
-   display: block;
 
-   content: "";
 
-   position: absolute;
 
-   top: 100%;
 
-   left: 0;
 
-   opacity: 0;
 
-   transition: .2s opacity ease-out, .2s color ease-out;
 
- }
 
- // Styling for input field wrapper
 
- .input-field {
 
-   // Inline styles
 
-   &.inline {
 
-     display: inline-block;
 
-     vertical-align: middle;
 
-     margin-left: 5px;
 
-     input,
 
-     .select-dropdown {
 
-       margin-bottom: 1rem;
 
-     }
 
-   }
 
-   // Gutter spacing
 
-   &.col {
 
-     label {
 
-       left: $gutter-width / 2;
 
-     }
 
-     .prefix ~ label,
 
-     .prefix ~ .validate ~ label {
 
-       width: calc(100% - 3rem - #{$gutter-width});
 
-     }
 
-   }
 
-   position: relative;
 
-   margin-top: 1rem;
 
-   margin-bottom: 1rem;
 
-   & > label {
 
-     color: $input-border-color;
 
-     position: absolute;
 
-     top: 0;
 
-     left: 0;
 
-     font-size: 1rem;
 
-     cursor: text;
 
-     transition: transform .2s ease-out, color .2s ease-out;
 
-     transform-origin: 0% 100%;
 
-     text-align: initial;
 
-     transform: translateY(12px);
 
-     &:not(.label-icon).active {
 
-       transform: translateY(-14px) scale(.8);
 
-       transform-origin: 0 0;
 
-     }
 
-   }
 
-   // Autofill + date + time inputs
 
-   & > input[type]:-webkit-autofill:not(.browser-default):not([type="search"]) + label,
 
-   & > input[type=date]:not(.browser-default) + label,
 
-   & > input[type=time]:not(.browser-default) + label {
 
-     transform: translateY(-14px) scale(.8);
 
-     transform-origin: 0 0;
 
-   }
 
-   .helper-text {
 
-     &::after {
 
-       opacity: 1;
 
-       position: absolute;
 
-       top: 0;
 
-       left: 0;
 
-     }
 
-     position: relative;
 
-     min-height: 18px;
 
-     display: block;
 
-     font-size: 12px;
 
-     color: rgba(0,0,0,.54);
 
-   }
 
-   // Prefix Icons
 
-   .prefix {
 
-     position: absolute;
 
-     width: $input-height;
 
-     font-size: $input-icon-size;
 
-     transition: color .2s;
 
-     top: ($input-height - $input-icon-size) / 2;
 
-     &.active { color: $input-focus-color; }
 
-   }
 
-   .prefix ~ input,
 
-   .prefix ~ textarea,
 
-   .prefix ~ label,
 
-   .prefix ~ .validate ~ label,
 
-   .prefix ~ .helper-text,
 
-   .prefix ~ .autocomplete-content {
 
-     margin-left: 3rem;
 
-     width: 92%;
 
-     width: calc(100% - 3rem);
 
-   }
 
-   .prefix ~ label { margin-left: 3rem; }
 
-   @media #{$medium-and-down} {
 
-     .prefix ~ input {
 
-       width: 86%;
 
-       width: calc(100% - 3rem);
 
-     }
 
-   }
 
-   @media #{$small-and-down} {
 
-     .prefix ~ input {
 
-       width: 80%;
 
-       width: calc(100% - 3rem);
 
-     }
 
-   }
 
- }
 
- /* Search Field */
 
- .input-field input[type=search] {
 
-   display: block;
 
-   line-height: inherit;
 
-   transition: .3s background-color;
 
-   .nav-wrapper & {
 
-     height: inherit;
 
-     padding-left: 4rem;
 
-     width: calc(100% - 4rem);
 
-     border: 0;
 
-     box-shadow: none;
 
-   }
 
-   &:focus:not(.browser-default) {
 
-     background-color: $input-background;
 
-     border: 0;
 
-     box-shadow: none;
 
-     color: #444;
 
-     & + label i,
 
-     & ~ .mdi-navigation-close,
 
-     & ~ .material-icons {
 
-       color: #444;
 
-     }
 
-   }
 
-   & + .label-icon {
 
-     transform: none;
 
-     left: 1rem;
 
-   }
 
-   & ~ .mdi-navigation-close,
 
-   & ~ .material-icons {
 
-     position: absolute;
 
-     top: 0;
 
-     right: 1rem;
 
-     color: transparent;
 
-     cursor: pointer;
 
-     font-size: $input-icon-size;
 
-     transition: .3s color;
 
-   }
 
- }
 
- /* Textarea */
 
- // Default textarea
 
- textarea {
 
-   width: 100%;
 
-   height: $input-height;
 
-   background-color: transparent;
 
-   &.materialize-textarea {
 
-     line-height: normal;
 
-     overflow-y: hidden; /* prevents scroll bar flash */
 
-     padding: .8rem 0 .8rem 0; /* prevents text jump on Enter keypress */
 
-     resize: none;
 
-     min-height: $input-height;
 
-     box-sizing: border-box;
 
-   }
 
- }
 
- // For textarea autoresize
 
- .hiddendiv {
 
-   visibility: hidden;
 
-   white-space: pre-wrap;
 
-   word-wrap: break-word;
 
-   overflow-wrap: break-word; /* future version of deprecated 'word-wrap' */
 
-   padding-top: 1.2rem; /* prevents text jump on Enter keypress */
 
-   // Reduces repaints
 
-   position: absolute;
 
-   top: 0;
 
-   z-index: -1;
 
- }
 
- /* Autocomplete */
 
- .autocomplete-content {
 
-   li {
 
-     .highlight { color: #444; }
 
-     img {
 
-       height: $dropdown-item-height - 10;
 
-       width: $dropdown-item-height - 10;
 
-       margin: 5px 15px;
 
-     }
 
-   }
 
- }
 
- /* Character Counter */
 
- .character-counter {
 
-   min-height: 18px;
 
- }
 
 
  |