fix(controller): save remaps per profile, gate modals on enabled (#69)

This commit is contained in:
2026-05-16 20:43:27 -07:00
committed by GitHub
parent 49f89e6452
commit 5250ca8214
31 changed files with 1639 additions and 463 deletions
+15 -1
View File
@@ -1694,14 +1694,17 @@ iframe[id^='yomitan-popup'],
}
.controller-config-badge {
display: inline-block;
display: inline-flex;
align-items: center;
padding: 2px 8px;
border: 0;
border-radius: 4px;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.02em;
background: rgba(138, 173, 244, 0.12);
color: var(--ctp-blue);
cursor: pointer;
white-space: nowrap;
}
@@ -1710,12 +1713,23 @@ iframe[id^='yomitan-popup'],
color: var(--ctp-overlay0);
}
.controller-config-reset-icon,
.controller-config-edit-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
padding: 0;
border: 0;
background: transparent;
font-size: 14px;
color: var(--ctp-overlay0);
cursor: pointer;
transition: color 120ms ease;
}
.controller-config-row:hover .controller-config-reset-icon,
.controller-config-row:hover .controller-config-edit-icon {
color: var(--ctp-overlay2);
}