0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Added shortcuts for highlighting and pasting without formatting (#18556)

No ref
This commit is contained in:
Sanne de Vries 2023-10-11 09:34:42 +02:00 committed by GitHub
parent 7764a73e11
commit 1a8ba0693c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 1 deletions

View file

@ -269,6 +269,14 @@
<span class="gh-key mono">X</span>
</div>
</div>
<div class="gh-shortcut">
<div><mark>Highlight</mark></div>
<div class="gh-keys">
<GhPostSettingsMenu::CtrlOrCmd />
<GhPostSettingsMenu::OptionOrAlt />
<span class="gh-key mono">H</span>
</div>
</div>
<div class="gh-shortcut">
<div class="link">Link</div>
<div class="gh-keys">
@ -332,6 +340,14 @@
<span class="gh-key" data-tooltip="Return">&#8617;</span>
</div>
</div>
<div class="gh-shortcut">
<div>Paste without formatting</div>
<div class="gh-keys">
<GhPostSettingsMenu::CtrlOrCmd />
<span class="gh-key" data-tooltip="Shift">&#8679;</span>
<span class="gh-key mono">V</span>
</div>
</div>
<div class="gh-shortcut">
<div>Indent</div>
<div class="gh-keys">

View file

@ -400,5 +400,5 @@ Post context menu
margin: 5px 0;
width: 100%;
height: 1px;
background-color: #dfe1e3;
background-color: var(--whitegrey-d1);
}