2019-10-17 18:23:53 +03:00
|
|
|
/**
|
2023-01-31 10:43:56 +02:00
|
|
|
* Copyright © 2016-2023 The Thingsboard Authors
|
2019-10-17 18:23:53 +03:00
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2023-02-24 19:25:19 +02:00
|
|
|
.tb-datakeys-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
width: 100%;
|
2019-10-17 18:23:53 +03:00
|
|
|
|
2023-02-24 19:25:19 +02:00
|
|
|
input.tb-dragging {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2019-10-17 18:23:53 +03:00
|
|
|
|
2023-02-24 19:25:19 +02:00
|
|
|
.mat-mdc-chip.mat-mdc-standard-chip.tb-datakey-chip {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
height: 32px;
|
2019-10-17 18:23:53 +03:00
|
|
|
|
2023-02-24 19:25:19 +02:00
|
|
|
.mat-mdc-chip-action {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
.mat-mdc-chip-action-label {
|
2022-04-06 16:07:42 +03:00
|
|
|
overflow: hidden;
|
2023-02-24 19:25:19 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tb-attribute-chip {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
color: rgb(66, 66, 66);
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
.tb-chip-drag-handle {
|
|
|
|
|
cursor: move;
|
2023-02-23 19:01:53 +02:00
|
|
|
mat-icon {
|
2023-02-24 19:25:19 +02:00
|
|
|
pointer-events: none;
|
2023-02-23 19:01:53 +02:00
|
|
|
margin-right: 4px;
|
|
|
|
|
margin-left: 4px;
|
2023-02-24 19:25:19 +02:00
|
|
|
vertical-align: bottom;
|
2023-02-23 19:01:53 +02:00
|
|
|
}
|
2019-10-17 18:23:53 +03:00
|
|
|
}
|
2023-02-24 19:25:19 +02:00
|
|
|
.tb-chip-labels {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
.tb-chip-label {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
.mat-icon.tb-datakey-icon {
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
}
|
|
|
|
|
.tb-agg-func {
|
|
|
|
|
font-style: italic;
|
|
|
|
|
color: #0c959c;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tb-chip-separator {
|
|
|
|
|
white-space: pre;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.mat-mdc-chip-remove.mat-icon {
|
|
|
|
|
width: 24px;
|
|
|
|
|
min-width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
margin-right: 4px;
|
|
|
|
|
color: inherit;
|
|
|
|
|
opacity: inherit;
|
|
|
|
|
padding-left: 0;
|
2019-10-17 18:23:53 +03:00
|
|
|
}
|
|
|
|
|
}
|
2023-02-23 19:01:53 +02:00
|
|
|
|
2023-02-24 19:25:19 +02:00
|
|
|
&.tb-datakey-chip-dnd-placeholder {
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
border: 2px dashed rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
&.tb-chip-dragging {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.tb-dragging-chip-image-fill {
|
|
|
|
|
background-color: rgba(0,0,0,0.3);
|
|
|
|
|
border-radius: var(--mdc-chip-container-shape-radius, 16px 16px 16px 16px);
|
|
|
|
|
display: none;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
.tb-dragging-chip-image {
|
|
|
|
|
background-color: var(--mdc-chip-elevated-container-color, transparent);
|
|
|
|
|
border-radius: var(--mdc-chip-container-shape-radius, 16px 16px 16px 16px);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
height: 32px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
.tb-dragging-chip-image-fill {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2022-04-06 16:07:42 +03:00
|
|
|
}
|
2019-10-17 18:23:53 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-24 19:25:19 +02:00
|
|
|
.mat-icon.tb-datakey-icon {
|
2023-02-23 19:01:53 +02:00
|
|
|
vertical-align: middle;
|
2023-02-24 19:25:19 +02:00
|
|
|
& > svg {
|
|
|
|
|
vertical-align: initial;
|
|
|
|
|
}
|
2023-02-23 19:01:53 +02:00
|
|
|
&.new-key {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|