| 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 |
|