2022-03-17 06:43:06 +05:00
|
|
|
.tvd-page {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
.tvd-top {
|
|
|
|
display: flex;
|
2022-08-05 18:26:07 +05:00
|
|
|
align-items: center;
|
2022-03-17 06:43:06 +05:00
|
|
|
justify-content: space-between;
|
|
|
|
margin-top: 20px;
|
2022-08-05 12:02:57 +05:00
|
|
|
|
|
|
|
.tvd-inputs {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.tvd-input-group {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0 15px;
|
|
|
|
|
|
|
|
& > span {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-17 06:43:06 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
.tvd-main {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
align-items: stretch;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
|
|
|
|
.tvd-left {
|
|
|
|
position: relative;
|
2022-03-18 13:03:58 +05:00
|
|
|
flex: 1;
|
2022-03-17 06:43:06 +05:00
|
|
|
|
2022-06-27 08:11:49 +05:00
|
|
|
> .tvd-tr-table, > .tvd-bl-table {
|
2022-03-17 06:43:06 +05:00
|
|
|
position: absolute;
|
|
|
|
//pointer-events: none;
|
2022-03-29 14:25:31 +05:00
|
|
|
transition: opacity .25s ease-out;
|
2022-03-17 06:43:06 +05:00
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.tvd-tr-table {
|
2022-06-29 18:08:37 +05:00
|
|
|
right: 10px;
|
|
|
|
top: 0;
|
2022-03-17 06:43:06 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
&.tvd-bl-table {
|
|
|
|
bottom: 35px;
|
2022-06-29 18:08:37 +05:00
|
|
|
left: 55px;
|
2022-03-17 06:43:06 +05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.tvd-right {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
padding-left: 10px;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
|
|
|
.tvd-npt-filter {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
2022-03-18 13:03:58 +05:00
|
|
|
> span {
|
2022-03-17 06:43:06 +05:00
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-08 12:35:08 +05:00
|
|
|
|
|
|
|
.empty-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tl-pie {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
justify-content: space-between;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
& .tl-pie-chart {
|
|
|
|
flex-grow: 1;
|
|
|
|
|
|
|
|
& .lines {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.tl-pie-part {
|
|
|
|
transition: transform .1s ease-in-out;
|
|
|
|
}
|