2019-08-12 19:34:23 +03:00
|
|
|
/**
|
2025-02-25 09:39:16 +02:00
|
|
|
* Copyright © 2016-2025 The Thingsboard Authors
|
2019-08-12 19:34:23 +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.
|
|
|
|
|
*/
|
2020-04-10 15:45:53 +03:00
|
|
|
@import '../../../../../scss/constants';
|
2020-04-09 17:53:24 +03:00
|
|
|
|
2019-08-12 19:34:23 +03:00
|
|
|
:host {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2021-12-14 12:40:18 +02:00
|
|
|
display: block;
|
2022-08-17 17:07:16 +03:00
|
|
|
|
|
|
|
|
mat-drawer-container {
|
|
|
|
|
overflow: clip;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-12 19:34:23 +03:00
|
|
|
.tb-entity-table {
|
|
|
|
|
.tb-entity-table-content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: #fff;
|
2023-03-21 13:09:20 +02:00
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
&.tb-outlined-border {
|
|
|
|
|
box-shadow: 0 0 0 0 rgb(0 0 0 / 20%), 0 0 0 0 rgb(0 0 0 / 14%), 0 0 0 0 rgb(0 0 0 / 12%);
|
|
|
|
|
border: solid 1px #e0e0e0;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
2019-08-12 19:34:23 +03:00
|
|
|
|
2020-04-09 17:53:24 +03:00
|
|
|
.mat-toolbar-tools{
|
|
|
|
|
min-height: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-container{
|
|
|
|
|
overflow: hidden;
|
2023-03-16 13:26:58 +02:00
|
|
|
height: 100%;
|
2020-04-09 17:53:24 +03:00
|
|
|
}
|
|
|
|
|
|
2019-08-12 19:34:23 +03:00
|
|
|
.tb-entity-table-title {
|
|
|
|
|
padding-right: 20px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-container {
|
|
|
|
|
overflow: auto;
|
2024-10-11 11:24:39 +03:00
|
|
|
|
|
|
|
|
.copy-button {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
transition: visibility 0.1s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cell-action:hover {
|
|
|
|
|
.copy-button {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-12 19:34:23 +03:00
|
|
|
}
|
2020-04-09 17:53:24 +03:00
|
|
|
|
|
|
|
|
.tb-entity-table-info{
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media #{$mat-xs} {
|
|
|
|
|
.mat-toolbar {
|
|
|
|
|
height: auto;
|
|
|
|
|
min-height: 100px;
|
2023-04-21 18:00:56 +03:00
|
|
|
.mat-toolbar-tools{
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
2020-04-09 17:53:24 +03:00
|
|
|
|
|
|
|
|
.tb-entity-table-title{
|
|
|
|
|
padding-bottom: 5px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2019-08-12 19:34:23 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:host ::ng-deep .mat-sort-header-sorted .mat-sort-header-arrow {
|
|
|
|
|
opacity: 1 !important;
|
|
|
|
|
}
|