This commit is contained in:
33333-33333 2026-07-29 20:52:11 +09:00
commit 091afc2b5c
77 changed files with 4405 additions and 8223 deletions

View file

@ -429,3 +429,23 @@ body.touch-mobile-ui .tool-tip-popover.mobile-selection-tip {
@media (max-width: 980px) {
.top-actions { overflow-x: auto; overflow-y: hidden; }
}
/* Mobile toolbar: keep every primary action reachable without hidden horizontal overflow. */
@media (max-width: 520px) {
.top-actions {
display: flex;
flex-wrap: wrap;
overflow: visible;
align-items: center;
}
.top-panel-search {
flex: 1 1 100%;
width: 100%;
min-width: 0;
}
.top-actions > .btn,
.top-actions > .top-menu,
.top-actions > .speed-menu {
flex: 0 1 auto;
}
}