Sindbad~EG File Manager

Current Path : /var/www/html/digisferach.sumar.com.py/wp-content/plugins/peepso/assets/scss/structures/
Upload File :
Current File : /var/www/html/digisferach.sumar.com.py/wp-content/plugins/peepso/assets/scss/structures/_form.scss

//
// FORM STRUCTURE
//



.ps-form {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}


.ps-form-legend {
  margin-bottom: $padding-base;
  padding: 0;
  color: $color-text;
  font-size: $font-size-md;
  font-weight: normal;

  &:empty {
    display: none;
  }
}


.ps-form__label-desc {
  margin-top: ($padding-sm / 2);
  margin-bottom: 0 !important;
  color: $color-muted;
}


.ps-form-group {
  position: relative;
  display: block;
  width: 100%;
  margin-top: $padding-base;
  color: $color-text-dark;

  &.has-privacy {
    @if $scss-direction == rtl {
      padding-left: 60px;
    } @else {
      padding-right: 60px;
    }
  }

  > label {
    font-size: $font-size-sm;
  }

  .ps-input,
  .ps-select,
  .ps-textarea {
    width: 100%;
  }

  &:first-child {
    margin-top: 0;
  }

  @include media('large') {
    display: table;

    @if $scss-direction == rtl {
      padding-left: 60px;
    } @else {
      padding-right: 60px;
    }

    > label {
      &:first-child {
        vertical-align: middle;
        display: table-cell;
        width: 240px;

        @if $scss-direction == rtl {
          padding-left: $padding-base;
        } @else {
          padding-right: $padding-base;
        }
      }
    }
  }

  .ps-register-form & {
    padding: 0;
  }
}


.ps-form-controls {
  margin-bottom: $padding-sm;
  color: $color-text-dark;

  > label {
    display: block;
    margin-bottom: $padding-sm;
  }
}


.ps-field-placeholder {
  color: $color-muted;
  font-style: italic;
}


.ps-form-helper {
  color: $color-text-light;
  font-size: $font-size-sm;
  line-height: $line-height-sm;
}


.ps-form-error{
  @extend %ps-list;

  display: block;
  border-top: 2px solid lighten($form-error-color, 10%);

  > li {
    color: $form-error-color;
    font-size: $font-size-sm;
    line-height: $line-height-sm;
  }
}


.ps-form-input {
  @include media('large') {
    display: inline-block;
  }
}


.ps-form-input-icon {
  position: relative;

  .ps-icon {
    position: absolute;
    top: 10px;
    left: 9px;
  }

  .ps-input {
    padding-left: ($padding-base * 2) !important;
  }
}


.submitel {
  @include media('large') {
    padding-left: 240px;
  }
}


.ps-form-privacy {
  display: block;

  button {
    width: 100%;
    height: 35px;
    margin-top: 4px;
  }

  .ps-dropdown-menu {
    width: 100%;
  }

  @include media('medium') {
    position: absolute;
    top: 0;
    right: 0;

    button {
      margin-top: 0;
    }
  }
}


.ps-privacy-dropdown {
  position: relative;

  .ps-dropdown__menu {
    left: auto;
    right: 0;
  }
}


.ps-privacy-title {
  display: none;

  @include media('medium') {
    display: inline-block;
  }
}


.ps-textarea {
  @extend %ps-textarea;

  // ROUNDED CORNERS
  @if $scss-rounded == false {
    @extend %radius--reset;
  } @else {
    border-radius: 4px;
  }
}


.ps-textarea-wrapper {
  position: relative;

  .ps-icon-add {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}


.ps-form-search {
  position: relative;
  margin-bottom: $padding-base;
  padding-right: 35px;

  input[type="text"] {
    width: 100%;
    display: block;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .ps-btn {
    position: absolute;
    top:0;
    right: 0;
    display: block;
    height: 35px;
  }

  @extend %clearfix;
}


.ps-form-search-messages {
  padding-right: 45px;
}


.ps-form-search-opt {
  position: absolute;
  top:0;
  right: 0;
  font-size: $font-size-md;
  line-height: 34px;
}


.ps-form__actions {
  margin-top: $padding-base;
  padding-top: $padding-base;
  border-top: $divider;

  @extend %clearfix;
}


.ps-form__error {
  margin-bottom: ($padding-sm / 2);

  &:last-child {
    margin-bottom: 0;
  }
}


.ps-form__legend {
  margin-top: ($padding-base * 2);
  margin-bottom: $padding-base;
  padding-bottom: $padding-base;
  font-size: $font-size-md;
  font-weight: normal;
  color: $color-text;
  border-bottom: $divider;

  &:first-of-type {
    margin-top: 0;
  }
}


.ps-form__desc {
  margin-top: $padding-sm;
  font-size: $font-size-base;
  color: $color-gray;
}


//
//  Wrapping form label and controls
//
.ps-form__row {
  @extend %form-row;
}


.ps-form__row--single {
  @extend %form-row--single;
}


.ps-form__row--error {
  color: $color-danger;

  .ps-form__controls {
    input[type="text"] {
      border-color: $color-danger !important;
    }
  }
}


//
//  Wrapping a form label
//
.ps-form__label {
  @extend %form-label;
}


//
//  Wrapping a form controls
//
.ps-form__controls {
  position: relative;

  @extend %form-controls;

  .ps-input,
  .ps-select,
  input[type="text"].ps-input,
  input[type="email"].ps-input,
  input[type="password"].ps-input {
    height: 34px;
  }
}


.ps-form__controls--info {
  padding-top: 10px;
  padding-bottom: 10px;
}


.ps-form__controls--limit {
  padding-bottom: 15px;
}


.ps-form__controls--half {
  @extend %clearfix;

  > .ps-form__item {
    margin-bottom: ($padding-sm / 2);

    @include media('medium') {
      width: 50%;
      float: left;
      padding-right: $padding-sm;

      &:nth-child(2n+2) {
        padding-left: $padding-sm;
        padding-right: 0;
      }
    }

    .ps-checkbox > label {
      padding-left: 0;
    }
  }
}


//
//  Wrapping a form helper
//
.ps-form__helper {
  display: block;
  margin-top: 5px;
  font-size: $font-size-sm;
}


//
//
//
.ps-form__limit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: $font-size-xs;
  line-height: 1.5;

  @if $scss-direction == rtl {
    text-align: left;
  } @else {
    text-align: right;
  }
}


//
//  Form Column
//
.ps-form__column {
  @extend %form-col;

  &.ps-full {
    padding: 0;

    .ps-form__label {
      float: none;
      width: auto;
    }

    .ps-form__controls {
      float: none;
      width: auto;
    }
  }
}


//
//  Form modifier for a Ban dialog window
//
.ps-form--ban {
  .ps-form__row {
    padding-bottom: $padding-sm;
    border-bottom: $divider;

    &:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }
  }

  .ps-form__controls {
    padding-top: ($padding-sm / 2);
    padding-bottom: ($padding-sm / 2);
  }
}


//
//  Form modifier for a Create Album dialog window
//
.ps-form--album {
  @extend %clearfix;

  .ps-form__controls > .ps-input,
  .ps-form__controls > .ps-select {
    width: 100%;
  }
}


//
//  Form modifier for Groups
//
.ps-form--group {
  @include media('medium') {
    .ps-form__label {
      width: 20%;

      @if $scss-direction == rtl {
        text-align: left;
      } @else {
        text-align: right;
      }
    }

    .ps-form__controls {
      width: 80%;

      @if $scss-direction == rtl {
        padding-right: $padding-base;
      } @else {
        padding-left: $padding-base;
      }
    }
  }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists