| 1 |
|
| 2 |
.CodeMirror-sizer { |
| 3 |
min-height: 300px !important; |
| 4 |
box-sizing: border-box; |
| 5 |
padding-bottom: 1.5em !important; |
| 6 |
|
| 7 |
&::after { |
| 8 |
position: absolute; |
| 9 |
bottom: 0; |
| 10 |
} |
| 11 |
} |
| 12 |
|
| 13 |
.snippet-scope { |
| 14 |
display: none; |
| 15 |
|
| 16 |
.description { |
| 17 |
display: block; |
| 18 |
} |
| 19 |
} |
| 20 |
|
| 21 |
.snippet-form.php-snippet { |
| 22 |
.php-scopes-list { |
| 23 |
display: block; |
| 24 |
} |
| 25 |
|
| 26 |
.CodeMirror-sizer { |
| 27 |
padding-bottom: 0 !important; |
| 28 |
} |
| 29 |
|
| 30 |
.CodeMirror-sizer::before { |
| 31 |
content: '<?php'; |
| 32 |
} |
| 33 |
} |
| 34 |
|
| 35 |
.snippet-form.css-snippet { |
| 36 |
.css-scopes-list { |
| 37 |
display: block; |
| 38 |
} |
| 39 |
|
| 40 |
.CodeMirror-sizer::before { |
| 41 |
content: '<style>'; |
| 42 |
} |
| 43 |
|
| 44 |
.CodeMirror-sizer::after { |
| 45 |
content: '</style>'; |
| 46 |
} |
| 47 |
} |
| 48 |
|
| 49 |
.snippet-form.js-snippet { |
| 50 |
.js-scopes-list { |
| 51 |
display: block; |
| 52 |
} |
| 53 |
|
| 54 |
.CodeMirror-sizer::before { |
| 55 |
content: '<script>'; |
| 56 |
} |
| 57 |
|
| 58 |
.CodeMirror-sizer::after { |
| 59 |
content: '</script>'; |
| 60 |
} |
| 61 |
} |
| 62 |
|
| 63 |
.snippet-form.html-snippet { |
| 64 |
.html-scopes-list { |
| 65 |
display: block; |
| 66 |
} |
| 67 |
|
| 68 |
.CodeMirror-sizer::before { |
| 69 |
content: '<!-- begin content -->'; |
| 70 |
} |
| 71 |
|
| 72 |
.CodeMirror-sizer::after { |
| 73 |
content: '<!-- end content -->'; |
| 74 |
} |
| 75 |
} |
| 76 |
|