rustio-admin 0.31.0

Django Admin, but for Rust. A small, focused admin framework.
Documentation
/* ============================================================
 * rustio-admin / pages / dashboard  —  Site administration
 *
 * The dashboard reuses the console layout's masthead + ledger +
 * board (layout/console.css). These are the few page-local tweaks:
 * the browse-data board columns and the row-count numeral.
 * ============================================================ */

.rio-dash-ledger { margin-block-start: 2px; }

/* Browse-data board: the model table reuses .rio-board / .rio-dtable. */
.rio-dtable td.col-fields {
  inline-size: 120px;
  color: var(--rio-text-mute);
  font-family: var(--rio-font-mono);
  font-size: var(--rio-text-13);
}
.rio-dtable th.col-rows,
.rio-dtable td.col-rows { inline-size: 110px; text-align: end; }
.rio-dtable td.col-browse { inline-size: 210px; text-align: end; white-space: nowrap; }

.rio-rownum {
  font-family: var(--rio-font-mono);
  font-size: var(--rio-text-15);
  font-weight: 500;
  color: var(--rio-text-hi);
  font-variant-numeric: lining-nums tabular-nums;
}

/* Dashboard env version chip in the ledger reads smaller. */
.rio-ledger-num--ver { font-size: 20px; }