We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Panel==1.3.6
import panel as pn import pandas as pd pn.extension("tabulator", template="fast") link = "https://panel.holoviz.org" data = pd.DataFrame({ "x": [1,2], "Source": [link, link] }) tabulator_formatters = { "Source": {"type": "link", "target": "_blank", "label": "link"}, } pn.widgets.Tabulator(data, formatters=tabulator_formatters, sizing_mode="stretch_width").servable()
There is a similar issue when hovering over a row.
Use raw_css
raw_css
.tabulator-row.tabulator-selected a {color: var(--foreground-on-accent-rest);} .tabulator-row.tabulator-selectable:hover a {color: var(--foreground-on-accent-rest);}
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Panel==1.3.6
There is a similar issue when hovering over a row.
Workaround
Use
raw_css
The text was updated successfully, but these errors were encountered: