mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
522 B
28 lines
522 B
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
// sass-lint:disable class-name-format
|
|
|
|
:host ::ng-deep {
|
|
.ace_editor {
|
|
background: $color-dark-foreground;
|
|
border: 1px solid $color-input;
|
|
|
|
&.no-border {
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
.ace_active-line,
|
|
.ace_gutter-active-line {
|
|
background: none !important;
|
|
}
|
|
|
|
.ace_gutter-active-line {
|
|
background: darken($color-border, 5%) !important;
|
|
}
|
|
|
|
.ace_gutter {
|
|
background: $color-border !important;
|
|
}
|
|
}
|