Pageworks / papertrain

Papertrain: a Craft CMS 3 framework
http://download.papertrain.io
MIT License
5 stars 2 forks source link

Freeform Bugs #131

Closed codewithkyle closed 5 years ago

codewithkyle commented 5 years ago
  1. Add textarea input to the sample form
  2. Make sure all b- prefixed classes have been changed (know issues is in form.twig)
  3. Update textarea SCSS
textarea{
    padding: 32px 16px 16px;
    border-radius: 4px;
    width: 100%;
    min-height: 106px;
    transition: border-color 150ms $ease-sharp, padding 150ms $ease-sharp;
    border-width: 2px;
    border-style: solid;

    & + label{
        position: absolute;
        top: 26px;
        left: 16px !important;
    }

    @include hover{
        border: 2px solid rgba($off-black, 0.6);
        transition: border 150ms $ease-in;
    }

    &:focus{
        padding: 31px 15px 15px;
        transition: border 150ms $ease-in, padding 150ms $ease-in;

        & + label{
            top: 25px;
            font-size: 12px !important;
        }
    }
}