Sha256: b04944ed8c53d6d02746da3f9cc369245e9ad4a7ead799e6c1e2e31665e22310

Contents?: true

Size: 1.98 KB

Versions: 3

Compression:

Stored size: 1.98 KB

Contents

input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea {
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: -webkit-box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
  -o-transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
  transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
  -moz-appearance: none;

  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 15px;
  font-size: 14px;
  line-height: 1.57142857;
  color: #76838f;
  background-color: #fff;
  background-image: none;
  border: 1px solid #e4eaec;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;

  &:focus {
    border-color: #62a8ea;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;

    -webkit-appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: -webkit-box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
    -o-transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
    transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
    -moz-appearance: none;
  }

  &:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
  }
}

input[type="submit"] {
  @include primary-button($primary-color, white);
  width: 100%;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  border: none;
  cursor: pointer;
}

textarea {
  height: 80px;
  padding: 5px 10px;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
arctic_admin-1.0.4 app/assets/stylesheets/components/_inputs.scss
arctic_admin-1.0.3 app/assets/stylesheets/components/_inputs.scss
arctic_admin-1.0.2 app/assets/stylesheets/components/_inputs.scss