Fix ace editor and color picker dark theme styles

This commit is contained in:
Jože Fortun
2024-01-30 17:46:05 +03:00
committed by Mumbi Francis
parent 3239092331
commit 19d3c8b964
21 changed files with 286 additions and 182 deletions
@@ -116,4 +116,61 @@ a.btn:not(.btn-link) {
-o-transition: min-width 0.2s ease-in-out;
transition: min-width 0.2s ease-in-out;
}
}
// Remove from here when all ace-editors use c-ace-editor
.ace_editor {
color: var(--black) !important;
background-color: var(--white) !important;
border-radius: 0.25rem;
border: 2px solid var(--extra-light);
.ace_cursor {
border-left: 2px solid var(--black);
}
.ace_gutter {
background-color: var(--light) !important;
color: var(--black) !important;
.ace_gutter-active-line {
background-color: var(--extra-light) !important;
}
}
.ace_text {
color: var(--black) !important;
}
.ace_keyword {
color: var(--primary) !important;
}
.ace_string {
color: var(--secondary) !important;
}
.ace_variable {
color: var(--warning) !important;
}
.ace_type {
color: var(--secondary) !important;
}
.ace_constant {
color: var(--primary) !important;
}
.ace_tag {
color: var(--primary) !important;
}
.ace_attribute {
color: var(--warning) !important;
}
.ace_comment {
color: var(--extra-light) !important;
}
}
@@ -69,6 +69,10 @@ $body-color: $black !default;
$border-color: $extra-light !default;
$hr-border-color: $border-color !default;
// Modal
$modal-backdrop-bg: $white !default;
$modal-backdrop-opacity: .75 !default;
// Options
$enable-rounded: true !default;
$enable-gradients: false !default;