This commit is contained in:
NY 2025-03-11 09:47:44 +08:00
parent ab64ec4536
commit ff0a646c81
3 changed files with 14 additions and 1 deletions

View File

@ -21,4 +21,3 @@ for sub_dir in sub_dirs:

View File

@ -58,6 +58,14 @@ def update_info(n):
html.Td(format_time_str(get_time_since_last_tweet()), html.Td(format_time_str(get_time_since_last_tweet()),
colSpan=4, colSpan=4,
style=table_style_l) style=table_style_l)
]),
html.Tr([
html.Td(f"Warning:",
colSpan=1,
style=table_style_c),
html.Td("1.Check Reply",
colSpan=7,
style=table_style_l)
]) ])
] ]
pace_table = html.Table(pace_table_rows, style={ pace_table = html.Table(pace_table_rows, style={

View File

@ -25,6 +25,12 @@ def setting_callback():
infoButton.addEventListener('mouseout', () => { infoButton.addEventListener('mouseout', () => {
infoTooltip.style.display = 'none'; infoTooltip.style.display = 'none';
}); });
infoTooltip.addEventListener('mouseover', () => {
infoTooltip.style.display = 'block';
});
infoTooltip.addEventListener('mouseout', () => {
infoTooltip.style.display = 'none';
});
} }
return window.dash_clientside.no_update; return window.dash_clientside.no_update;
} }