130 lines
2.6 KiB
SCSS
130 lines
2.6 KiB
SCSS
/**
|
|
* Copyright © 2016-2023 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 0 0 8px;
|
|
margin: 10px 0;
|
|
border: 1px groove rgba(0, 0, 0, .25);
|
|
|
|
legend {
|
|
color: rgba(0, 0, 0, .7);
|
|
}
|
|
}
|
|
|
|
.tb-multiple-input-layout {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: start;
|
|
}
|
|
|
|
.color-picker-input {
|
|
padding: 7px 16px 7px 12px;
|
|
margin: 0 10px 22px 0;
|
|
border-color: rgba(0, 0, 0, 0.4);
|
|
|
|
.label-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.mat-icon, img {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.input-field {
|
|
padding-right: 10px;
|
|
|
|
mat-form-field {
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
|
|
.mat-mdc-slide-toggle {
|
|
display: block;
|
|
margin-top: 10px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.date-time-input {
|
|
.mat-mdc-form-field {
|
|
width: 100%;
|
|
margin: 2px 0;
|
|
}
|
|
}
|
|
|
|
.vertical-alignment {
|
|
flex-direction: column;
|
|
}
|
|
|
|
&--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 .mdc-form-field {
|
|
width: 100%;
|
|
& > label {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
margin: 0;
|
|
.mat-icon {
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|