feat(character-dictionary): add manager modal and scope name matching to current media (#86)

This commit is contained in:
2026-05-25 18:29:20 -07:00
committed by GitHub
parent 097b619d71
commit 3932e53ced
71 changed files with 1896 additions and 127 deletions
+33
View File
@@ -1568,6 +1568,27 @@ iframe[id^='yomitan-popup'],
width: min(680px, 92%);
}
.character-dictionary-tabs {
display: flex;
gap: 6px;
margin-bottom: 10px;
}
.character-dictionary-tab {
border: 1px solid rgba(110, 115, 141, 0.28);
border-radius: 6px;
background: rgba(24, 25, 38, 0.78);
color: var(--ctp-subtext0);
padding: 6px 10px;
cursor: pointer;
}
.character-dictionary-tab.active {
border-color: rgba(138, 173, 244, 0.62);
background: rgba(138, 173, 244, 0.18);
color: var(--ctp-text);
}
.character-dictionary-current {
font-size: 12px;
color: var(--ctp-subtext1);
@@ -1631,6 +1652,18 @@ iframe[id^='yomitan-popup'],
min-width: 0;
}
.character-dictionary-manager-actions {
display: flex;
flex: 0 0 auto;
flex-wrap: wrap;
justify-content: flex-end;
gap: 6px;
}
.character-dictionary-managed-entry {
align-items: flex-start;
}
.character-dictionary-use {
flex: 0 0 auto;
border: 1px solid rgba(138, 173, 244, 0.38);