fix(#1293): override global li padding on agent menu separator
common.css sets `li { padding: 0.5em 0 }` globally. The .agent-menu-sep
li inherits this, bloating the 1px separator into a ~16px thick bar.
Add `padding: 0` to .agent-menu-sep to reset it.
This commit is contained in:
parent
e0ea22f3ee
commit
70832fcbf1
1 changed files with 1 additions and 0 deletions
|
|
@ -426,6 +426,7 @@ body.dashboard-shell {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
background: var(--purple-dim);
|
background: var(--purple-dim);
|
||||||
margin: 0.3em 0;
|
margin: 0.3em 0;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
/* Pending state splits queued vs running. */
|
/* Pending state splits queued vs running. */
|
||||||
.container-row.pending .actions { opacity: 0.4; pointer-events: none; }
|
.container-row.pending .actions { opacity: 0.4; pointer-events: none; }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue