rustio-admin 0.24.0

Django Admin, but for Rust. A small, focused admin framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/* ============================================================
 * rustio-admin / print / print
 *
 * Strip page chrome (topbar, sidebar, footer, action rows, anchors
 * in the page-action bar) for paper output. Cards lose their box
 * shadow and pick up a neutral grey border so they print cleanly.
 * ============================================================ */

@media print {
  .rio-topbar, .rio-sidebar, .rio-footer, .rio-form-actions, .rio-page-actions a { display: none !important; }
  .rio-card { box-shadow: none; border-color: #ccc; }
  body { background: #fff; }
}