This commit is contained in:
2026-01-28 23:51:28 +01:00
parent 217a8581ae
commit f901481d6a
9 changed files with 522 additions and 132 deletions

View File

@@ -38,10 +38,56 @@ canvas {
font-size: 16px;
font-weight: bold;
color: black;
border-bottom: 2px solid #333;
padding-bottom: 8px;
}
.debug-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
border-bottom: 2px solid #333;
padding-bottom: 0px;
}
.debug-header h3 {
margin: 0;
border: none;
padding: 0;
}
#minimize-btn {
background: #333;
color: white;
border: none;
border-radius: 10px;
width: 24px;
height: 24px;
cursor: pointer;
font-size: 18px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
#minimize-btn:hover {
background: #555;
}
#debug-content {
transition: max-height 0.3s ease, opacity 0.3s ease;
max-height: 500px;
opacity: 1;
overflow: hidden;
}
#debug-ui.minimized #debug-content {
max-height: 0;
opacity: 0;
}
.debug-item {
margin-bottom: 12px;
}
@@ -73,7 +119,19 @@ canvas {
border-radius: 4px;
}
.file-label {
.debug-item select {
width: 100%;
padding: 6px;
margin-top: 5px;
font-size: 13px;
border: 1px solid #ccc;
border-radius: 4px;
background: white;
cursor: pointer;
}
.file-label,
.asset-label {
display: block;
margin-bottom: 5px;
font-weight: bold;