You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note, only the `placement`, `maxWidth` and `interactive` props are allowed to be overridden currently.
101
101
:::
102
102
103
+
:::{confval} tippy_add_class
104
+
Add a class name to all elements with tips.
105
+
106
+
For example this can be used to change the style of the cursor when hovering over a tip (see [`html_css_files`](https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_css_files)):
107
+
108
+
`conf.py`:
109
+
110
+
```python
111
+
html_static_path = ['_static']
112
+
html_css_files = ["tippy.css"]
113
+
tippy_add_class ="has-tippy"
114
+
```
115
+
116
+
`_static/tippy.css`:
117
+
118
+
```css
119
+
.has-tippy:hover {
120
+
cursor: help;
121
+
}
122
+
```
123
+
124
+
:::
125
+
103
126
### Filters
104
127
105
128
These configurations enable filtering of what tips are created, and shown.
0 commit comments