mirror of
https://github.com/Django-LiveView/docs.git
synced 2025-12-31 05:32:23 +01:00
Fix table display by converting to bullet lists
- Convert benchmark comparison table to bullet list format - Convert technology comparison table to bullet list with pipe separators - Add comprehensive table styling in CSS (prepared for future use) - one.el backend (one-ox) does not support Org mode tables or HTML export blocks - Workaround: use bullet lists which render correctly and maintain readability
This commit is contained in:
@@ -51,6 +51,33 @@ b {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: var(--gap-l) 0;
|
||||
background-color: rgba(217, 217, 217, 0.05);
|
||||
}
|
||||
|
||||
table thead {
|
||||
background-color: var(--color-brown);
|
||||
color: var(--color-black);
|
||||
}
|
||||
|
||||
table th,
|
||||
table td {
|
||||
padding: var(--gap-s) var(--gap-m);
|
||||
text-align: left;
|
||||
border: 1px solid rgba(210, 158, 121, 0.3);
|
||||
}
|
||||
|
||||
table tbody tr:hover {
|
||||
background-color: rgba(217, 217, 217, 0.1);
|
||||
}
|
||||
|
||||
table th {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Components */
|
||||
|
||||
.container {
|
||||
|
||||
Reference in New Issue
Block a user