Sha256: e050e026c41cce1afa3abbc9cf5f54e26ceb67989dea8e1a67257f090fdd1c4c

Contents?: true

Size: 1.63 KB

Versions: 6

Compression:

Stored size: 1.63 KB

Contents

@use "sass:math";

@import "../pb_body/body_mixins";
@import "./textarea_mixin";
@import "../tokens/spacing";
@import "../tokens/titles";

[class^=pb_textarea_kit] {
  margin-bottom: $space_sm;

  [class^=pb_caption_kit] {
    margin-bottom: $space_xs;
    display: block;
  }
  textarea::placeholder,
  .pb_text_area_kit::placeholder {
    @include pb_body_light;
  }
  textarea,
  .pb_text_area_kit {
    @include pb_textarea_light;
  }
  textarea:focus,
  .pb_text_area_kit:focus {
    border-color: $primary;
    @include pb_textarea_focus_light;
    @include transition_default;
  }
  textarea:hover,
  .pb_text_area_kit:hover {
    background-color: rgba($focus_input_light,$opacity_5);
  }

  &.resize_both > textarea {
    resize: both;
    overflow: auto;
  }
  &.resize_horizontal > textarea {
    resize: horizontal;
    overflow: auto;
  }
  &.resize_vertical > textarea {
    resize: vertical;
    overflow: auto;
  }

  &.dark {
    textarea::placeholder {
      @include pb_body_light_dark;
    }
    textarea,
    .pb_text_area_kit {
      @include pb_body_dark;
      background-color: rgba($white, $opacity_1);
      border-color: rgba($white, 0.15);
    }
    textarea:focus, .pb_text_area_kit:focus {
      border-color: $active_dark;
      background-color: rgba($white, 0.025);
    }
  }

  &.error {
    [class*=pb_body_kit] {
      margin-top: math.div($space_xs, 2);
    }
    textarea {
      border-color: $error;
    }
  }

  &.inline {
    textarea {
      &:not(:hover) {
        border-color: transparent;
      }
      &:focus {
        border-color: $primary;
      }
    }
  }

  .pb_caption_kit_xs {
    text-align: right;
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
playbook_ui-14.11.0 app/pb_kits/playbook/pb_textarea/_textarea.scss
playbook_ui-14.11.0.pre.rc.16 app/pb_kits/playbook/pb_textarea/_textarea.scss
playbook_ui-14.10.0.pre.alpha.play16825301 app/pb_kits/playbook/pb_textarea/_textarea.scss
playbook_ui-14.11.0.pre.rc.15 app/pb_kits/playbook/pb_textarea/_textarea.scss
playbook_ui-14.11.0.pre.rc.14 app/pb_kits/playbook/pb_textarea/_textarea.scss
playbook_ui-14.11.0.pre.rc.13 app/pb_kits/playbook/pb_textarea/_textarea.scss