jaime 4746f47282
feat: management WebUI homepage (#36822)
issue: #36784
1. Implement an embedded web server for WebUI access.  
2. Complete the homepage development.

Home page demo:
<img width="2177" alt="iShot_2024-10-10_17 57 34"
src="https://github.com/user-attachments/assets/38539917-ce09-4e54-a5b5-7f4f7eaac353">

Signed-off-by: jaime <yun.zhang@zilliz.com>
2024-10-23 11:29:28 +08:00

34 lines
732 B
CSS

.table {
table-layout: fixed;
}
.table th,
.table td {
max-width: 300px;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal; /* Allow text to wrap onto the next line */
overflow-wrap: break-word;
}
/*.table thead {*/
/* background-color: #e9ecef; !* Set background color for table headers *!*/
/*}*/
/*.table-striped tbody tr:nth-of-type(odd) {*/
/* background-color: #f8f9fa; !* Set background color for odd rows in striped tables *!*/
/*}*/
/*.table-hover tbody tr:hover {*/
/* background-color: #e9ecef; !* Set background color for rows on hover *!*/
/*}*/
.row h2 {
margin-top: 50px;
}
.separate-line {
height: 1px;
background-color: #000;
margin: 40px 0;
}