enhance: pointer cursor when selecting non-consecutive blocks

This commit is contained in:
Tienson Qin
2022-05-24 00:29:29 +08:00
parent c7f9072396
commit 6843271591

View File

@@ -589,3 +589,19 @@ html.is-native-ios {
width: 300px;
}
}
html:not(.is-mac) {
body[data-active-keystroke="Control"] {
.block-content {
cursor: pointer;
}
}
}
html.is-mac {
body[data-active-keystroke="Meta"] {
.block-content {
cursor: pointer;
}
}
}