Spaces:
Paused
Paused
File size: 2,051 Bytes
4279593 c3d9a20 4279593 c3d9a20 4279593 95dc0b5 4279593 95dc0b5 4279593 |
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
/* Fullscreen overlay */
.graph-dialog-container {
position: fixed !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100vh !important;
background-color: rgba(0, 0, 0, 0.2) !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
z-index: 1000 !important;
overflow: hidden !important;
}
/* Inner dialog container */
.graph-dialog-inner {
position: relative !important;
border-radius: 12px !important;
padding: 1rem !important;
width: 45% !important;
max-width: 100% !important;
background-color: #1e1e1e !important;
min-height: 80vh !important;
overflow: hidden !important; /* Prevent scrolling */
}
/* Header styling */
.graph-dialog-header {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
padding: 16px !important;
background-color: #1e1e1e !important;
color: #fff !important;
}
/* Title styling */
.graph-dialog-title {
font-weight: bold !important;
font-size: 1.5rem !important;
margin: 0 !important;
}
/* Close button styling */
.graph-dialog .close-btn {
position: absolute !important;
top: 16px !important;
right: 16px !important;
background: none !important;
color: white !important;
padding: 7px !important;
border-radius: 5px !important;
cursor: pointer !important;
}
.graph-dialog-close-btn:hover {
background: rgba(255, 255, 255, 0.1) !important;
color: white !important;
}
/* Content area */
.graph-dialog-content {
padding: 0 !important;
background-color: #1e1e1e !important;
height: 550px !important;
overflow: hidden !important;
}
/* Loading state */
.graph-loading {
display: flex !important;
justify-content: center !important;
align-items: center !important;
height: 50% !important;
color: #fff !important;
}
/* Error message */
.graph-error {
display: flex !important;
justify-content: center !important;
align-items: center !important;
height: 50% !important;
color: red !important;
} |