fix
This commit is contained in:
parent
ab64ec4536
commit
ff0a646c81
@ -21,4 +21,3 @@ for sub_dir in sub_dirs:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -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={
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user