multiple-input-widget.component.scss 2.24 KB
/**
 * Copyright © 2016-2024 The Thingsboard Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
:host {

  .tb-multiple-input {
    height: 100%;
    display: flex;
    flex-direction: column;

    .tb-multiple-input-container {
      padding: 8px 8px 0;
      flex: 1 1 100%;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .fields-group {
      padding: 8px 8px 0;
      margin: 10px 0;
      border: 1px groove rgba(0, 0, 0, .25);

      legend {
        color: rgba(0, 0, 0, .7);
      }
    }

    .tb-multiple-input-layout {
      display: grid;
    }

    .mat-mdc-slide-toggle {
      display: block;
      margin-top: 10px;
      margin-bottom: 8px;
    }

    &--buttons-container {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: end;
      &__button {
        max-height: 50px;
        margin-right:20px;
      }
    }

    &--errors-container {
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      &__error {
        text-align: center;
        font-size: 18px;
        color: #a0a0a0;
      }
    }
  }
}

:host ::ng-deep {
  .tb-multiple-input {
    .mat-mdc-slide-toggle, .mat-mdc-checkbox {
      .mdc-form-field {
        width: 100%;
        & > label {
          display: flex;
          align-items: center;
          width: 100%;
          margin: 0;
          .mat-icon {
            margin-right: 8px;
          }
        }
      }
    }
    .mat-mdc-slide-toggle {
      .mdc-form-field {
        & > label {
          .mat-icon {
            margin-left: 8px;
          }
        }
      }
    }
    .color-input {
      .mat-mdc-form-field-icon-suffix {
        padding: 0 8px 0 4px;
      }
    }
  }
}