Complete governed reporting execution and publication
This commit is contained in:
@@ -361,6 +361,152 @@
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.reporting-chart-stack,
|
||||
.reporting-line-chart,
|
||||
.reporting-metric-grid,
|
||||
.reporting-pie-layout {
|
||||
display: grid;
|
||||
gap: 14px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.reporting-column-chart {
|
||||
display: flex;
|
||||
align-items: end;
|
||||
gap: 8px;
|
||||
min-height: 280px;
|
||||
padding: 18px 12px 0;
|
||||
overflow-x: auto;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.reporting-column {
|
||||
display: grid;
|
||||
grid-template-rows: 24px minmax(180px, 1fr) 32px;
|
||||
align-items: end;
|
||||
min-width: 54px;
|
||||
flex: 1 0 54px;
|
||||
gap: 4px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.reporting-column strong,
|
||||
.reporting-column span {
|
||||
overflow: hidden;
|
||||
font-size: 0.72rem;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.reporting-column i {
|
||||
display: block;
|
||||
width: 72%;
|
||||
margin: 0 auto;
|
||||
border-radius: 3px 3px 0 0;
|
||||
background: var(--accent);
|
||||
}
|
||||
|
||||
.reporting-line-chart svg {
|
||||
width: 100%;
|
||||
height: 280px;
|
||||
overflow: visible;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 4px;
|
||||
background: var(--surface-raised);
|
||||
}
|
||||
|
||||
.reporting-chart-line {
|
||||
fill: none;
|
||||
stroke: var(--accent);
|
||||
stroke-width: 3;
|
||||
vector-effect: non-scaling-stroke;
|
||||
}
|
||||
|
||||
.reporting-chart-area {
|
||||
fill: color-mix(in srgb, var(--accent) 28%, transparent);
|
||||
}
|
||||
|
||||
.reporting-chart-labels {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
overflow-x: auto;
|
||||
color: var(--text-soft);
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.reporting-metric-grid {
|
||||
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
|
||||
}
|
||||
|
||||
.reporting-metric {
|
||||
display: flex;
|
||||
min-height: 92px;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
padding: 14px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 6px;
|
||||
background: var(--surface-raised);
|
||||
}
|
||||
|
||||
.reporting-metric span {
|
||||
color: var(--text-soft);
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
.reporting-metric strong {
|
||||
font-size: 1.45rem;
|
||||
}
|
||||
|
||||
.reporting-pie-layout {
|
||||
grid-template-columns: minmax(180px, 300px) minmax(240px, 1fr);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.reporting-pie {
|
||||
width: min(100%, 280px);
|
||||
aspect-ratio: 1;
|
||||
margin: 0 auto;
|
||||
border-radius: 50%;
|
||||
box-shadow: inset 0 0 0 1px var(--border);
|
||||
}
|
||||
|
||||
.reporting-pie.is-donut {
|
||||
border: 58px solid var(--surface-raised);
|
||||
}
|
||||
|
||||
.reporting-pie-layout ol {
|
||||
display: grid;
|
||||
gap: 7px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.reporting-pie-layout li {
|
||||
display: grid;
|
||||
grid-template-columns: 12px minmax(0, 1fr) auto;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.reporting-swatch {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 2px;
|
||||
background: #2f7d6e;
|
||||
}
|
||||
|
||||
.reporting-swatch-1 { background: #3366a8; }
|
||||
.reporting-swatch-2 { background: #c28b2c; }
|
||||
.reporting-swatch-3 { background: #9a4f71; }
|
||||
.reporting-swatch-4 { background: #5f7f3a; }
|
||||
.reporting-swatch-5 { background: #b85c3b; }
|
||||
.reporting-swatch-6 { background: #586176; }
|
||||
.reporting-swatch-7 { background: #2e8b9a; }
|
||||
|
||||
.reporting-bar-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(100px, 22%) minmax(180px, 1fr) minmax(80px, auto);
|
||||
@@ -384,11 +530,87 @@
|
||||
}
|
||||
|
||||
.reporting-chart-table {
|
||||
grid-column: 1 / -1;
|
||||
margin-top: 14px;
|
||||
padding-top: 12px;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.reporting-inspector-toggle,
|
||||
.reporting-inspector-record {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
align-items: center;
|
||||
gap: 6px 10px;
|
||||
padding: 9px 10px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.reporting-inspector-toggle > span,
|
||||
.reporting-inspector-record > span {
|
||||
display: flex;
|
||||
min-width: 0;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
.reporting-inspector-toggle small,
|
||||
.reporting-inspector-record small {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.reporting-inspector-toggle .toggle-switch-copy {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.reporting-access-explanation {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
margin: 8px;
|
||||
padding: 9px 10px;
|
||||
border-left: 3px solid var(--accent);
|
||||
background: var(--hover-bg);
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
.reporting-dialog-span {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.reporting-drill-dialog {
|
||||
width: min(1100px, calc(100vw - 32px));
|
||||
height: min(760px, calc(100vh - 32px));
|
||||
}
|
||||
|
||||
.reporting-drill-dialog .dialog-body {
|
||||
display: flex;
|
||||
min-height: 0;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.reporting-drill-path {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 7px;
|
||||
}
|
||||
|
||||
.reporting-drill-path span {
|
||||
padding: 5px 8px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 4px;
|
||||
background: var(--surface-subtle, var(--surface));
|
||||
font-size: 0.76rem;
|
||||
}
|
||||
|
||||
.reporting-drill-grid {
|
||||
min-height: 0;
|
||||
flex: 1;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.reporting-dialog-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
|
||||
Reference in New Issue
Block a user