// // Record navigation // // Previous/next navigation shown in the breadcrumb row of a form, letting the // user step through the sibling records of the controller's list (respecting // its active filters, search and sorting). Rendered by the FormController // behavior via formcontroller/partials/_record_navigation.php. // ======================================================================== .control-breadcrumb { position: relative; } .form-record-nav { position: absolute; top: 0; bottom: 0; right: 20px; display: flex; align-items: center; gap: 9px; font-size: 12px; .form-record-nav-position { color: #5a6b7b; font-weight: 600; letter-spacing: .3px; white-space: nowrap; } .form-record-nav-group { display: inline-flex; align-items: center; background: rgba(255, 255, 255, .55); border: 1px solid rgba(0, 0, 0, .09); border-radius: 6px; overflow: hidden; box-shadow: 0 1px 1px rgba(0, 0, 0, .03); } .form-record-nav-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 24px; color: #5a6b7b; text-decoration: none; transition: background-color .12s ease, color .12s ease; & + .form-record-nav-btn { border-left: 1px solid rgba(0, 0, 0, .09); } &:not(.is-disabled):hover { background-color: #fff; color: #1f2d3d; } &.is-disabled { color: #b6bfc7; cursor: default; } svg { display: block; } } }