This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnebula.rendering.config.js
77 lines (77 loc) · 2.17 KB
/
nebula.rendering.config.js
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
module.exports = {
serve: {
type: "sn-pivot-table",
build: false,
open: false,
fixturePath: "test/rendering/__fixtures__",
flags: {
CLIENT_IM_5863_PVT_TEXT_ALIGN: true,
},
keyboardNavigation: false,
themes: [
{
id: "default",
theme: {
object: {
pivotTableV2: {
dimension: {
label: {
name: {
fontSize: "12px",
fontFamily: '"Source Sans Pro", "Arial", "sans-serif"',
backgroundColor: "transparent",
color: "#404040",
},
value: {
fontSize: "12px",
fontFamily: '"Source Sans Pro", "Arial", "sans-serif"',
color: "#404040",
backgroundColor: "transparent",
},
},
},
measure: {
label: {
name: {
color: "rgba(0, 0, 0, 0.55)",
backgroundColor: "transparent",
},
value: {
fontSize: "12px",
fontFamily: '"Source Sans Pro", "Arial", "sans-serif"',
color: "rgba(0, 0, 0, 0.55)",
backgroundColor: "transparent",
},
},
},
total: {
label: {
value: {
color: "#404040",
backgroundColor: "transparent",
},
},
},
null: {
label: {
value: {
color: "#404040",
backgroundColor: "rgba(0, 0, 0, 0.05)",
},
},
},
grid: {
lineClamp: 1,
backgroundColor: "transparent",
borderColor: "rgba(0, 0, 0, 0.15)",
divider: {
borderColor: "rgba(0, 0, 0, 0.6)",
},
},
},
},
},
},
],
},
};