File tree Expand file tree Collapse file tree 6 files changed +37
-20
lines changed
distributed-tracing/src/shared/dashboard/widgets/table
observability/src/pages/explorer Expand file tree Collapse file tree 6 files changed +37
-20
lines changed Original file line number Diff line number Diff line change 8
8
align-items : center ;
9
9
10
10
height : $paginator-height ;
11
- padding-top : 6px ;
11
+ padding : 6px 0 ;
12
12
border-top : 1px solid $color-border ;
13
13
14
14
.label {
Original file line number Diff line number Diff line change 10
10
border-radius : 2px ;
11
11
12
12
& .expanded {
13
- margin -bottom : 8px ;
13
+ padding -bottom : 8px ;
14
14
}
15
15
16
16
.header-content {
Original file line number Diff line number Diff line change 2
2
@import ' layout' ;
3
3
4
4
.table {
5
- display : flex ;
6
- flex-direction : column ;
7
5
height : 100% ;
8
- width : 100% ;
9
- position : relative ;
10
6
}
11
7
12
8
.title-row {
Original file line number Diff line number Diff line change 5
5
}
6
6
7
7
.table {
8
- flex : 1 1 ;
9
- width : 100 % ;
8
+ flex : 1 ;
9
+ min-height : 0 ;
10
10
}
11
11
12
12
.header-margin {
Original file line number Diff line number Diff line change 1
1
@import ' font' ;
2
2
3
- .explorer-container {
3
+ .explorer {
4
4
display : flex ;
5
5
flex-direction : column ;
6
- padding : 24 px 24 px 0 ;
7
- height : calc ( 100% - 40 px ) ;
6
+ overflow : hidden ;
7
+ height : 100% ;
8
8
9
- .filter-bar {
10
- margin-top : 16px ;
9
+ .explorer-header {
10
+ flex : 0 ;
11
+ }
12
+
13
+ .explorer-content {
14
+ display : flex ;
15
+ flex-direction : column ;
16
+ padding : 24px 24px 0 ;
17
+ flex : 1 ;
18
+ min-height : 0 ;
19
+ }
20
+
21
+ .explorer-data-toggle {
22
+ flex : 0 ;
23
+ padding-bottom : 16px ;
24
+ }
25
+
26
+ .explorer-filter-bar {
27
+ flex : 0 ;
28
+ padding-bottom : 8px ;
11
29
}
12
30
13
31
.panel-title {
14
32
color : black ;
15
33
}
16
34
17
35
.visualization-panel {
18
- padding-top : 8px ;
36
+ flex : 0 ;
37
+
19
38
.label {
20
39
@include body-1-medium ;
21
40
}
29
48
}
30
49
31
50
.results-panel {
51
+ flex : 1 ;
32
52
overflow : hidden ;
33
- flex : 1 1 auto ;
53
+
34
54
.label {
35
55
@include body-1-medium ;
36
56
}
37
57
38
58
.results-panel-content {
39
- margin -top : 12px ;
59
+ padding -top : 12px ;
40
60
}
41
61
}
42
62
}
Original file line number Diff line number Diff line change @@ -19,17 +19,18 @@ import {
19
19
styleUrls : [ './explorer.component.scss' ] ,
20
20
changeDetection : ChangeDetectionStrategy . OnPush ,
21
21
template : `
22
- <div class="vertical-flex-layout ">
23
- <ht-page-header></ht-page-header>
24
- <div class="fill-container explorer-container ">
22
+ <div class="explorer ">
23
+ <ht-page-header class="explorer-header" ></ht-page-header>
24
+ <div class="explorer-content ">
25
25
<ht-toggle-group
26
+ class="explorer-data-toggle"
26
27
[items]="this.contextItems"
27
28
[activeItem]="this.activeContextItem$ | async"
28
29
(activeItemChange)="this.onContextUpdated($event.value)"
29
30
></ht-toggle-group>
30
31
31
32
<ht-filter-bar
32
- class="filter-bar"
33
+ class="explorer- filter-bar"
33
34
[attributes]="this.attributes$ | async"
34
35
[syncWithUrl]="true"
35
36
(filtersChange)="this.onFiltersUpdated($event)"
You can’t perform that action at this time.
0 commit comments