PluginProbe
WP Coder – Insert & Manage Code Snippets / trunk
WP Coder – Insert & Manage Code Snippets vtrunk
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / assets / scss / _codeMirror.scss

_codeMirror.scss in WP Coder – Insert & Manage Code Snippets trunk, at assets/scss/_codeMirror.scss

33 lines 704 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .CodeMirror {
2 border: 1px solid var(--wowp-border);
3 font-size: 13px;
4 //resize: vertical;
5 //overflow: auto;
6 //height: auto !important;
7 //min-height: 350px !important;
8 width: 100%;
9 min-height: 60vh !important;
10 height: calc(100vh - 295px) !important;
11 //border: 1px solid #dcdcde;
12 box-sizing: border-box;
13 }
14
15 .wpcoder-global-php .CodeMirror-sizer:before {
16 content: "<?php\A defined( 'ABSPATH' ) || exit;\A\A";
17 white-space: pre;
18 }
19
20 .wpcoder-global-php .CodeMirror-sizer:before {
21 color: #848A8A;
22 position: absolute;
23 }
24
25 .wpcoder-global-php .CodeMirror-lines {
26 padding-top: 50px;
27 }
28
29 .highlighted-gutter {
30 background-color: #e8f2ff;
31 border-left: 5px solid var(--wowp-orange);
32 }
33