diff options
author | silverwind <me@silverwind.io> | 2021-12-20 12:07:49 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-20 20:07:49 +0000 |
commit | 3f34f09537726ad218e2edccbee4b670f456fcc3 (patch) | |
tree | d45aefc32fe78a96a19ba4ffa8ca76c2a3c430ed /web_src/less/_editor.less | |
parent | 660c30db80fdfca3c92ecf988b2d395b6eb5017c (diff) | |
download | gitea-3f34f09537726ad218e2edccbee4b670f456fcc3.tar.gz gitea-3f34f09537726ad218e2edccbee4b670f456fcc3.zip |
Extract CodeMirror styles (#17960)
- Extract CodeMirror-related styles to separate files
- Generalize CodeMirror styles where possible
- Improve fullscreen and side-by-side mode for dark theme
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'web_src/less/_editor.less')
-rw-r--r-- | web_src/less/_editor.less | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/web_src/less/_editor.less b/web_src/less/_editor.less index 6ddb1a3357..73e5bda0a2 100644 --- a/web_src/less/_editor.less +++ b/web_src/less/_editor.less @@ -1,19 +1,3 @@ -.EasyMDEContainer .CodeMirror { - color: var(--color-input-text); - background-color: var(--color-input-background); - border-color: var(--color-secondary); - font: 14px var(--fonts-monospace); - - &.cm-s-default { - border-radius: 3px; - padding: 0 !important; - } - - .cm-comment { - background: inherit !important; - } -} - .repository.file.editor .tab[data-tab="write"] { padding: 0 !important; } @@ -33,6 +17,10 @@ border-color: var(--color-secondary); } +.editor-toolbar.fullscreen { + background: var(--color-body); +} + .editor-toolbar button { border: none !important; color: var(--color-text-light); @@ -55,6 +43,24 @@ background: var(--color-active); } +/* hide preview button, we have the preview tab for this */ +.editor-toolbar:not(.fullscreen) .preview { + display: none; +} + +/* hide revert button in fullscreen, it breaks the page */ +.editor-toolbar.fullscreen .revert-to-textarea { + display: none; +} + +.editor-preview { + background-color: var(--color-body); +} + +.editor-preview-side { + border-color: var(--color-secondary); +} + .editor-statusbar { color: var(--color-text-light); } |