This commit is contained in:
33333-33333 2026-06-28 13:40:41 +09:00
commit f500279abd
93 changed files with 1893 additions and 1198 deletions

View file

@ -278,14 +278,14 @@
position: relative;
}
.panel-card-state::before {
content: "";
content: "\25be ";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-52%);
color: rgba(98, 82, 64, 0.72);
}
.collapsible-card.collapsed .panel-card-state::before { content: ""; }
.collapsible-card.collapsed .panel-card-state::before { content: "\25b8 "; }
.collapsible-card.collapsed .panel-card-body { display: none; }
.panel-card-body { padding-top: 12px; }
@ -756,7 +756,7 @@
background: rgba(238, 247, 255, 0.98);
}
.tool-category[data-tool-category="operate"] .tool-category-body {
grid-template-columns: repeat(5, minmax(0, 1fr));
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 5px;
}
.tool-category[data-tool-category="operate"] .tool {
@ -785,3 +785,19 @@
@media (max-width: 980px) {
.tool-category[data-tool-category="operate"]:not(.collapsed) { top: 58px; }
}
/* v39.15.38: prevent long tooltips from spilling outside the viewport. */
.tool-tip-popover {
width: max-content;
min-width: 160px;
max-width: min(320px, calc(100vw - 18px));
box-sizing: border-box;
white-space: normal;
overflow-wrap: anywhere;
word-break: break-word;
}
@media (max-width: 980px) {
body.touch-mobile-ui .tool-tip-popover {
max-width: min(280px, calc(100vw - 24px));
}
}