This commit is contained in:
33333-33333 2026-06-26 19:04:32 +09:00
commit 077d4ab9ac
71 changed files with 2905 additions and 1063 deletions

View file

@ -736,3 +736,52 @@
border-radius: 999px;
background: rgba(111, 153, 102, 0.13);
}
/* v36: pin only the operation tool category under the quick-scroll tabs. */
.tool-category[data-tool-category="operate"]:not(.collapsed) {
position: sticky;
top: 58px;
z-index: 11;
overflow: hidden;
background: linear-gradient(180deg, rgba(238, 247, 255, 0.98), rgba(221, 237, 255, 0.98));
border-color: rgba(82,128,190,0.36);
box-shadow: 0 8px 18px rgba(58, 82, 112, 0.13), inset 0 1px 0 rgba(255,255,255,0.82);
}
.tool-category[data-tool-category="operate"] .tool-category-toggle {
background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(231, 243, 255, 0.98));
border-bottom-color: rgba(82,128,190,0.30);
}
.tool-category[data-tool-category="operate"] .tool-category-body {
background: rgba(238, 247, 255, 0.98);
}
.tool-category[data-tool-category="operate"] .tool-category-body {
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 5px;
}
.tool-category[data-tool-category="operate"] .tool {
grid-template-columns: 1fr;
min-height: 38px;
padding: 4px;
justify-items: center;
align-items: center;
text-align: center;
background: rgba(255,255,255,0.96);
border-color: rgba(82,128,190,0.28);
}
.tool-category[data-tool-category="operate"] .tool-label {
display: none;
}
.tool-category[data-tool-category="operate"] .tool::before {
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(var(--tool-icon-zoom, 1));
}
.tool-category[data-tool-category="operate"] .tool-sprite-preview {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 980px) {
.tool-category[data-tool-category="operate"]:not(.collapsed) { top: 58px; }
}