Spaces:
Paused
Paused
File size: 4,330 Bytes
4acff5f e555dc3 4acff5f e555dc3 4acff5f e555dc3 4acff5f e555dc3 4acff5f 4e6c165 4acff5f e555dc3 4acff5f | 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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | /* General Styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
/* Header Styles - Hide only specific elements, not the sidebar toggle */
header header {
visibility: hidden;
}
/* Keep the menu button visible */
header button[aria-label="menu"],
header button[aria-label="Menu"],
header button[data-testid="icon-button"],
header button[kind="icon"],
header button[data-testid="stLogo"] {
visibility: visible !important;
display: flex !important;
}
/* Hide deploy button specifically if needed */
button[data-testid="deployButton"],
a[href*="share.streamlit.io"],
a[href*="deploy"] {
display: none !important;
}
.streamlit-footer {
display: none;
}
/* Removed: .st-emotion-cache-uf99v8 - was hiding sidebar toggle button */
/* Sidebar Styles */
.stSidebar {
padding: 1rem;
}
.stSidebar .sidebar-content {
padding: 0;
}
.sidebar-chat-button {
background-color: #ffffff;
color: #333333;
border: 1px solid #e0e0e0;
border-radius: 5px;
padding: 0.5rem;
margin-bottom: 0.5rem;
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: flex;
align-items: center;
justify-content: space-between;
}
.sidebar-chat-button:hover {
background-color: #f0f0f0;
}
/* Info Box Styles */
.info-box {
background-color: #e6f3ff;
padding: 20px;
border-radius: 5px;
text-align: center;
flex: 1;
min-width: 150px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.info-box h3 {
margin: 0;
}
.info-box[data-type="enter-url"] { background-color: #e6f3ff; }
.info-box[data-type="specify-data"] { background-color: #fff2e6; }
.info-box[data-type="save-data"] { background-color: #e6ffe6; }
.info-box[data-type="convert-data"] { background-color: #ffe6e6; }
/* Chat Interface Styles */
.chat-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.chat-message {
display: flex;
margin-bottom: 20px;
align-items: flex-start;
}
.user-message {
justify-content: flex-end;
}
.assistant-message {
justify-content: flex-start;
}
.message-content {
max-width: 70%;
padding: 10px 15px;
border-radius: 20px;
font-size: 16px;
line-height: 1.4;
word-wrap: break-word;
overflow-wrap: break-word;
}
.user-message .message-content {
background-color: #ff5647;
margin-left: auto;
}
body {
background-color: var(--page-bg-light);
}
body.dark-mode {
background-color: var(--page-bg-dark);
}
.avatar {
width: 40px;
height: 40px;
border-radius: 50%;
margin: 0 10px;
overflow: hidden;
flex-shrink: 0;
}
.avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.user-message .avatar {
order: 1;
}
.assistant-message .avatar {
order: -1;
}
/* Streamlit elements within chat messages */
.chat-message .stDataFrame {
margin-top: 10px;
}
.chat-message .stMarkdown {
margin: 0;
}
.chat-message pre {
white-space: pre-wrap;
word-wrap: break-word;
}
/* Responsive Design */
@media (max-width: 768px) {
.info-box {
min-width: 100px;
font-size: 12px;
padding: 10px;
}
.info-box p {
font-size: 10px;
margin: 0;
}
}
/* Date Group Styles */
.date-group {
color: #666666;
font-size: 0.8rem;
margin-top: 1rem;
margin-bottom: 0.5rem;
}
/* Delete Button Styles */
.delete-button {
color: #666666;
background: none;
border: none;
cursor: pointer;
margin-left: 0.5rem;
}
.delete-button:hover {
color: #333333;
}
/* Fix for Streamlit delete button overflow in sidebar - target by data-testid */
button[data-testid*="delete"] {
padding: 0.25rem 0.35rem !important;
min-width: unset !important;
width: auto !important;
height: auto !important;
font-size: 1rem !important;
}
/* Constrain the column containing delete button */
.stColumns > div:last-child {
display: flex !important;
align-items: center !important;
justify-content: center !important;
overflow: visible !important;
}
/* Remove extra margins from buttons in narrow columns */
.stColumns > div:last-child > button {
margin: 0 !important;
padding: 0.25rem 0.5rem !important;
} |