PluginProbe
Code Snippets / 3.7.0
Code Snippets v3.7.0
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / css / edit / _editor.scss

_editor.scss in Code Snippets 3.7.0, at css/edit/_editor.scss

90 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 .CodeMirror,
3 .snippet-form textarea {
4 inline-size: 100%;
5 font-family: monospace;
6 }
7
8 .CodeMirror-sizer {
9 min-block-size: 300px !important;
10 box-sizing: border-box;
11 padding-block-end: 1.5em !important;
12
13 &::after {
14 position: absolute;
15 inset-block-end: 0;
16 }
17
18 .snippet-form.php-snippet & {
19 padding-block-end: 0 !important;
20
21 &::before {
22 content: '<?php';
23 }
24 }
25
26 .snippet-form.css-snippet & {
27 &::before {
28 content: '<style>';
29 }
30
31 &::after {
32 content: '</style>';
33 }
34 }
35
36 .snippet-form.js-snippet & {
37 &::before {
38 content: '<script>';
39 }
40
41 &::after {
42 content: '</script>';
43 }
44 }
45
46 .snippet-form.html-snippet & {
47 &::before {
48 content: '<!-- begin content -->';
49 }
50
51 &::after {
52 content: '<!-- end content -->';
53 }
54 }
55 }
56
57 .snippet-editor {
58 position: relative;
59 }
60
61 .snippet-editor-help {
62 position: absolute;
63 inset-inline-end: 5px;
64 inset-block-start: 5px;
65
66 td {
67 &:first-child {
68 padding-inline-end: 0.5em;
69 }
70
71 @media screen and (width >= 512px) {
72 white-space: nowrap;
73 }
74 }
75
76 .mac-key {
77 display: none;
78 }
79
80 .platform-mac {
81 .mac-key {
82 display: inline;
83 }
84
85 .pc-key {
86 display: none;
87 }
88 }
89 }
90