PluginProbe
TablePress – Tables in WordPress made easy / 3.3
TablePress – Tables in WordPress made easy v3.3
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
tablepress / admin / css / codemirror.scss

codemirror.scss in TablePress – Tables in WordPress made easy 3.3, at admin/css/codemirror.scss

35 lines 715 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * CSS code for the CodeMirror editor for the "Custom CSS" on the "Plugin Options" screen.
3 *
4 * @package TablePress
5 * @subpackage Views CSS
6 * @author Tobias Bäthge
7 * @since 1.7.0
8 */
9
10 .CodeMirror {
11 height: 100px;
12
13 &.large {
14 height: 500px;
15 resize: both; /* Allow resizing of the enlarged text field only to reduce confusion when resize on click is applied. */
16 z-index: 0; /* Necessary to prevent the resizer from being hidden when height is reduced. */
17 }
18
19 &-scroll {
20 border: 1px solid #ddd;
21 height: calc(100% - 2px);
22 padding-bottom: 0;
23 margin-right: 0;
24
25 .CodeMirror-sizer {
26 border-right-width: 0 !important;
27 }
28 }
29
30 &.disabled .CodeMirror-scroll {
31 background-color: #eeeeee;
32 }
33
34 }
35