PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.4.1
Block Animations, Motion & Scroll Effects – Ghost Kit v3.4.1
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / gutenberg / components / code-editor / editor.scss

editor.scss in Block Animations, Motion & Scroll Effects – Ghost Kit 3.4.1, at gutenberg/components/code-editor/editor.scss

29 lines 503 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "../../variables";
2
3 .ghostkit-component-code-editor {
4 &.ace_editor {
5 width: 100%;
6 line-height: 1.45;
7 background-color: $light-gray-100;
8 border-radius: 3px;
9 box-shadow: 0 0 0 1px $light-gray-400;
10
11 .ace_gutter {
12 background-color: $light-gray-400;
13 }
14 }
15
16 .ace_tooltip {
17 padding: 6px 10px;
18 background: none;
19 background-color: #fff;
20 border: 1px solid #e4e4e4;
21 border-radius: 3px;
22 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 5%);
23 }
24
25 .ace_hidden-cursors {
26 opacity: 0;
27 }
28 }
29