feat(ui): hide model sub-type in compact density mode, see #793

Add CSS rules to hide the model sub-type and separator elements when the compact-density class is applied. This change saves visual space in compact mode by removing less critical information, improving the layout for dense interfaces.
This commit is contained in:
Will Miao
2026-01-31 11:17:49 +08:00
parent 66babf9ee1
commit 92d471daf5

View File

@@ -113,6 +113,12 @@
max-width: 110px; max-width: 110px;
} }
/* Compact mode: hide sub-type to save space */
.compact-density .model-sub-type,
.compact-density .model-separator {
display: none;
}
.compact-density .card-actions i { .compact-density .card-actions i {
font-size: 0.95em; font-size: 0.95em;
padding: 3px; padding: 3px;