{% extends "base.html" %} {% block title %}Experiment Tree — ABREKA{% endblock %} {% block extra_css %} .tree-node { margin: 4px 0; padding: 8px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; } .tree-node:hover { border-color: var(--primary); box-shadow: 0 1px 4px rgba(79, 70, 229, 0.15); } .tree-node .exp-id { font-family: var(--mono); font-weight: 700; } .tree-node .hypothesis { color: var(--muted); max-width: 400px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .tree-node .metric { font-family: var(--mono); font-size: 12px; font-weight: 600; } .tree-children { margin-left: 32px; padding-left: 16px; border-left: 2px solid var(--border); } details.tree-children-wrapper > summary { list-style: none; cursor: pointer; } details.tree-children-wrapper > summary::-webkit-details-marker { display: none; } .tree-chevron { font-size: 10px; transition: transform 0.15s; display: inline-block; user-select: none; } details[open].tree-children-wrapper > summary .tree-chevron { transform: rotate(90deg); } .tree-controls { margin-bottom: 12px; display: flex; gap: 8px; } {% endblock %} {% block breadcrumb %}
{% endblock %} {% block content %}No experiments found.