-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMetrics.scss
117 lines (108 loc) · 1.97 KB
/
Metrics.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
.metricList {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.vizChartContainer {
flex: 0 0 calc(50% - 5px);
border: 1px solid #e8e8e8;
margin: 5px 0px;
}
.vizChartItemTitle {
display: flex;
justify-content: space-between;
align-items: baseline;
padding: 5px 10px 0 10px;
font-weight: 600;
}
.copy {
cursor: pointer;
&:hover {
color: #1890ff;
}
}
.vizChartContainer{
position: relative;
.copyReq {
cursor: pointer;
position: absolute;
display: none;
right: 3px;
bottom: 0px;
width: 24px;
height: 24px;
z-index: 11;
&:hover {
color: #1890ff;
}
}
&:hover {
.copyReq {
display: block;
}
}
}
.vizChartItem {
background: white !important;
.echLegend--top .echLegendList,
.echLegend--bottom .echLegendList {
display: flex;
flex-wrap: wrap;
}
}
.vizChartTitle {
color: red;
position: absolute;
font-size: 14px;
fill-opacity: 50%;
padding-left: 5px;
}
.summary {
padding: 15px;
border-top: 1px solid rgb(232, 232, 232);
border-bottom: 1px solid rgb(232, 232, 232);
position: relative;
.mask {
position: absolute;
inset: 0;
background: rgba(96, 96, 96, 0.25);
display: flex;
align-items: center;
justify-content: center;
color: red;
font-size: 20px;
z-index: 1;
flex-direction: column;
.time {
color: #666;
}
}
.metricMask {
filter: blur(4px);
-o-filter: blur(4px);
-ms-filter: blur(4px);
-moz-filter: blur(4px);
-webkit-filter: blur(4px);
}
}
.datepicker {
:global(.euiSuperUpdateButton.euiButton--primary) {
background-color: #1890ff !important;
border-color: #1890ff !important;
color: #fff;
border-radius: 0;
}
:global(.euiSuperUpdateButton.euiButton--secondary) {
border-radius: 0 !important;
}
:global(.euiFormControlLayout--group) {
border-radius: 0;
}
}
.px-box{
display: flex;
justify-content: space-between;
.px {
flex: 1;
}
}