blob: 5327c58edd22e2a7e8b624a87b676afc85ee9ca3 (
plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
.domain-measures-value {
margin-right: 4px;
}
.domain-measures-value .rating {
margin-left: -4px;
margin-right: -4px;
}
.domain-measures-leak {
background-color: #fbf3d5;
border: 1px solid #eae3c7;
padding: 4px 6px;
}
.facet .domain-measures-leak {
padding: 4px 8px;
margin: -5px -5px;
}
.domain-measures-leak-header {
background-color: #fbf3d5;
border: 1px solid #eae3c7;
padding: 4px 10px;
white-space: nowrap;
}
.measure-details-page-actions {
display: inline-block;
min-width: 80px;
text-align: right;
}
.measure-details-page-actions .spinner {
vertical-align: text-bottom;
}
.measure-details-metric {
display: flex;
align-items: center;
}
.measure-details-primary {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
}
.measure-details-secondary {
display: inline-block;
width: 260px;
margin-top: 4px;
}
.measure-details-component-cell {
max-width: 0;
}
.measure-details-component-cell > div {
max-width: 100%;
}
.domain-measures-value .rating,
.measure-details-value .rating {
width: 18px;
height: 18px;
line-height: 18px;
margin-top: -2px;
margin-bottom: -2px;
font-size: 12px;
}
.measure-view-select {
width: 50px;
}
.measure-view-select .Select-menu-outer {
width: 100px;
border-top-right-radius: 4px;
}
.measure-breadcrumbs {
display: inline-block;
max-width: 60%;
vertical-align: middle;
}
.measure-favorite svg {
vertical-align: middle;
}
.measure-details-bubble-chart {
position: relative;
padding: 0 0 30px 60px;
border: 1px solid #e6e6e6;
background-color: #fff;
}
.measure-details-bubble-chart-header {
display: flex;
align-items: center;
padding: 16px;
margin-left: -60px;
border-bottom: 1px solid #e6e6e6;
}
.measure-details-bubble-chart-title {
position: absolute;
}
.measure-details-bubble-chart-legend {
display: flex;
flex-direction: column;
text-align: center;
flex-grow: 1;
}
.measure-details-bubble-chart-axis {
position: absolute;
color: #777;
font-size: 12px;
}
.measure-details-bubble-chart-axis.x {
left: 50%;
bottom: 10px;
width: 500px;
margin-left: -250px;
text-align: center;
}
.measure-details-bubble-chart-axis.y {
top: 50%;
left: -20px;
transform: rotate(-90deg);
}
|