-
Notifications
You must be signed in to change notification settings - Fork 9
/
layout_fastsearch.py
59 lines (55 loc) · 1.54 KB
/
layout_fastsearch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Dash imports
import dash
from dash import dcc
import dash_bootstrap_components as dbc
from dash import html
ADVANCED_LIBRARYSEARCH_MODAL = [
dbc.Modal(
[
dbc.ModalHeader("Library Search Modal"),
dbc.ModalBody([
html.Iframe(
id="librarysearch_frame",
style={
"width" : "100%",
"height" : "800px",
"border" : "0"
}
)
]),
dbc.ModalFooter(
dbc.Button("Close", id="advanced_librarysearch_modal_close", className="ml-auto")
),
],
id="advanced_librarysearch_modal",
size="xl",
style={
"max-width": "1920px"
}
),
]
ADVANCED_LIBRARYSEARCHMASSIVEKB_MODAL = [
dbc.Modal(
[
dbc.ModalHeader("Library Search MassIVE-KB Modal"),
dbc.ModalBody([
html.Iframe(
id="librarysearchmassivekb_frame",
style={
"width" : "100%",
"height" : "800px",
"border" : "0"
}
)
]),
dbc.ModalFooter(
dbc.Button("Close", id="advanced_librarysearchmassivekb_modal_close", className="ml-auto")
),
],
id="advanced_librarysearchmassivekb_modal",
size="xl",
style={
"max-width": "1920px"
}
),
]