first commit all files

This commit is contained in:
dwindown
2026-01-28 00:26:00 +07:00
parent 65dd207a74
commit 97426d5ab1
72 changed files with 91484 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
/* 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;
}