Spaces:
Sleeping
Sleeping
File size: 1,844 Bytes
7563aec 37a7681 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | .manager {
padding: 8px;
display: flex;
flex-direction: column;
gap: 6px;
}
.title {
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #555;
margin-bottom: 4px;
}
.empty {
padding: 10px;
font-size: 12px;
color: #555;
}
.row {
display: flex;
flex-direction: column;
gap: 4px;
background: #1e1e1e;
border-radius: 5px;
padding: 7px 8px;
border: 1px solid #333;
}
.row.disabled {
opacity: 0.45;
}
.toggle {
display: flex;
align-items: center;
gap: 7px;
cursor: pointer;
}
.toggle input[type='checkbox'] {
accent-color: #4a9eff;
width: 14px;
height: 14px;
}
.channelLabel {
font-size: 12px;
color: #ccc;
}
.controls {
display: flex;
flex-direction: column;
gap: 4px;
padding-left: 21px;
}
.colormapSelect {
background: #161616;
color: #bbb;
border: 1px solid #3a3a3a;
border-radius: 3px;
padding: 3px 6px;
font-size: 11px;
width: 100%;
}
.opacityWrap {
display: flex;
align-items: center;
gap: 6px;
font-size: 11px;
color: #888;
}
.opacityLabel {
min-width: 10px;
}
.slider {
flex: 1;
accent-color: #4a9eff;
height: 3px;
}
.opacityValue {
min-width: 30px;
text-align: right;
color: #aaa;
}
/* ββ Mobile touch targets βββββββββββββββββββββββββββββββββββββ */
@media (max-width: 768px) {
.manager {
flex-direction: row;
flex-wrap: wrap;
padding: 6px;
gap: 6px;
}
.title {
width: 100%;
margin-bottom: 0;
}
.row {
flex: 1 1 calc(50% - 6px);
min-width: 140px;
}
.toggle input[type='checkbox'] {
width: 18px;
height: 18px;
}
.colormapSelect {
padding: 6px 8px;
font-size: 12px;
}
.slider {
height: 20px; /* larger touch area */
cursor: pointer;
}
}
|