55 lines
1.1 KiB
CSS
55 lines
1.1 KiB
CSS
/* Cost Log Grouped/Collapsible Styles */
|
|
|
|
/* Group row styles */
|
|
.wpaw-group-row {
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
|
|
.wpaw-group-row:hover {
|
|
background-color: var(--agentic-bg-hover) !important;
|
|
}
|
|
|
|
.wpaw-group-row .wpaw-collapse-icon {
|
|
transition: transform 0.2s ease;
|
|
font-size: 16px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* Collapsible row styles */
|
|
.wpaw-collapse-row {
|
|
border: none !important;
|
|
}
|
|
|
|
.wpaw-collapse-row td {
|
|
background-color: var(--agentic-bg-tertiary) !important;
|
|
border-top: 1px solid var(--agentic-border-color) !important;
|
|
}
|
|
|
|
/* Details table inside collapse */
|
|
.wpaw-details-table {
|
|
background-color: transparent !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.wpaw-details-table thead th {
|
|
background-color: rgba(0, 0, 0, 0.1) !important;
|
|
border-bottom: 1px solid var(--agentic-border-color) !important;
|
|
font-weight: 500;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.wpaw-details-table tbody tr {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.wpaw-details-table tbody tr:hover {
|
|
background-color: rgba(0, 0, 0, 0.05) !important;
|
|
}
|
|
|
|
.wpaw-details-table code {
|
|
background-color: var(--agentic-bg-secondary);
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
font-size: 0.85em;
|
|
}
|