PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 2.25.0
Block Animations, Motion & Scroll Effects – Ghost Kit v2.25.0
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 2.25.0, at gutenberg/components/code-editor/editor.scss

33 lines 611 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 .ace_gutter-cell {
16 background-color: $light-gray-600;
17 }
18 }
19
20 .ace_tooltip {
21 padding: 6px 10px;
22 background: none;
23 background-color: #fff;
24 border: 1px solid #e4e4e4;
25 border-radius: 3px;
26 box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 5%);
27 }
28
29 .ace_hidden-cursors {
30 opacity: 0;
31 }
32 }
33