-
Notifications
You must be signed in to change notification settings - Fork 659
Expand file tree
/
Copy pathpage-statistics-overview.less
More file actions
77 lines (61 loc) · 1.16 KB
/
page-statistics-overview.less
File metadata and controls
77 lines (61 loc) · 1.16 KB
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
.page-statistics-overview {
td {
max-width: fit-content;
overflow: visible;
text-overflow: initial;
white-space: nowrap;
}
.stats-title-text {
font-size: 1.6em;
margin-bottom: 10px;
}
.chart {
width: 98%;
height: 300px;
.svg:not(:root){
overflow:visible;
}
}
circle.graph-dot {
fill: var(--brandBackgroundCompoundRest);
}
circle.graph-dot:hover {
fill: var(--statusGenericMarigoldStrokeActiveRest);
}
rect.graph-bar {
fill: var(--brandBackgroundCompoundRest);
}
rect.graph-bar:hover {
fill: var(--statusGenericMarigoldStrokeActiveRest);
}
line.graph-line {
stroke: var(--brandBackgroundCompoundRest);
stroke-width: 2;
}
text {
fill: var(--neutralForeground1Rest);
}
text.graph-x-axis-text {
font-size: 0.8em;
}
text.graph-x-axis-date {
font-size: 0.6em;
}
text.graph-y-axis-text {
font-size: 0.9em;
}
.table {
width: fit-content;
max-width: fit-content;
min-width: 100%;
}
.table-wrapper {
overflow: auto;
}
.chart.table-wrapper {
overflow: visible;
}
svg:not(:root) {
overflow: visible;
}
}