Skip to content

Commit

Permalink
fix: 🐛 修复CM6的 checkbox 被隐藏的问题 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
gui-ying233 authored Jun 21, 2024
1 parent dd4304f commit c838c64
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/skins/ipe-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@
margin-bottom: 0;
}

.in-page-edit .editSummary, .in-page-edit .newSectionTitleInput {
.in-page-edit .editSummary,
.in-page-edit .newSectionTitleInput {
width: 98%;
margin: 4px auto 8px 0.5em;
}
Expand Down Expand Up @@ -640,6 +641,12 @@
clip: rect(0, 0, 0, 0);
}

.in-page-edit .cm-panel label input[type='checkbox'],
.in-page-edit .cm-panel label input[type='radio'] {
position: initial;
clip: initial;
}

.in-page-edit label input[type='checkbox']:disabled + span::before {
border-color: #d6d6d6;
}
Expand Down

0 comments on commit c838c64

Please sign in to comment.