rgrid-python 4.5.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,80 @@
1
+ /* gridpy.css — Default styles for grid_py interactive HTML output */
2
+
3
+ .gridpy-container {
4
+ position: relative;
5
+ display: inline-block;
6
+ overflow: hidden;
7
+ font-family: sans-serif;
8
+ }
9
+
10
+ .gridpy-container canvas,
11
+ .gridpy-container svg {
12
+ position: absolute;
13
+ top: 0;
14
+ left: 0;
15
+ }
16
+
17
+ /* SVG layer */
18
+ .gridpy-svg {
19
+ z-index: 2;
20
+ pointer-events: none;
21
+ }
22
+
23
+ .gridpy-svg text {
24
+ user-select: none;
25
+ }
26
+
27
+ /* Canvas layer */
28
+ .gridpy-canvas {
29
+ z-index: 1;
30
+ }
31
+
32
+ /* Interaction overlay */
33
+ .gridpy-overlay {
34
+ z-index: 3;
35
+ pointer-events: all;
36
+ fill: none;
37
+ stroke: none;
38
+ }
39
+
40
+ /* Tooltip */
41
+ .gridpy-tooltip {
42
+ position: absolute;
43
+ pointer-events: none;
44
+ background: rgba(0, 0, 0, 0.8);
45
+ color: #fff;
46
+ padding: 6px 10px;
47
+ border-radius: 4px;
48
+ font-size: 12px;
49
+ line-height: 1.4;
50
+ white-space: nowrap;
51
+ z-index: 100;
52
+ opacity: 0;
53
+ transition: opacity 0.15s ease;
54
+ }
55
+
56
+ .gridpy-tooltip.visible {
57
+ opacity: 1;
58
+ }
59
+
60
+ /* Brush selection */
61
+ .gridpy-overlay .brush .selection {
62
+ fill: rgba(100, 149, 237, 0.2);
63
+ stroke: #6495ed;
64
+ stroke-width: 1;
65
+ }
66
+
67
+ /* Theme: light (default) */
68
+ .gridpy-theme-light {
69
+ background: #ffffff;
70
+ }
71
+
72
+ /* Theme: dark */
73
+ .gridpy-theme-dark {
74
+ background: #1e1e1e;
75
+ }
76
+
77
+ .gridpy-theme-dark .gridpy-tooltip {
78
+ background: rgba(255, 255, 255, 0.9);
79
+ color: #1e1e1e;
80
+ }