Skip to content

Commit 7242c5b

Browse files
committed
Dark mode fixes
1 parent b87bb8b commit 7242c5b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

assets/css/builder.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ html.gecko.mac .builder-building-area div[data-root-control-wrapper] {
454454
margin-right: 0;
455455
}
456456
.builder-controllers-builder-area {
457-
background: white;
457+
background: var(--bs-body-bg, white);
458458
}
459459
.builder-controllers-builder-area ul.controller-behavior-list {
460460
padding: 20px;
@@ -847,7 +847,7 @@ html.gecko.mac .builder-controllers-builder-area ul.controller-behavior-list {
847847
padding-right: 30px;
848848
}
849849
.builder-menu-editor {
850-
background: white;
850+
background: var(--bs-body-bg, white);
851851
}
852852
.builder-menu-editor .builder-menu-editor-workspace {
853853
padding: 30px;
@@ -1084,7 +1084,7 @@ html.gecko .control-filelist ul li.group {
10841084
}
10851085
.builder-inspector-container {
10861086
width: 350px;
1087-
border-left: 1px solid #d9d9d9;
1087+
border-left: 1px solid var(--bs-border-color, #d9d9d9);
10881088
}
10891089
.builder-inspector-container:empty {
10901090
display: none!important;

assets/less/behaviors.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.builder-controllers-builder-area {
2-
background: white;
2+
background: var(--bs-body-bg, white);
33

44
ul.controller-behavior-list {
55
.clearfix();
@@ -11,7 +11,7 @@
1111
li {
1212
h4 {
1313
text-align: center;
14-
border-bottom: 1px dotted @builder-control-border-color;
14+
border-bottom: 1px dotted @builder-control-border-color;
1515
margin: 0 -20px 40px;
1616

1717
span {

assets/less/builder.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ html.gecko .control-filelist ul li.group {
5757

5858
.builder-inspector-container {
5959
width: 350px;
60-
border-left: 1px solid #d9d9d9;
60+
border-left: 1px solid var(--bs-border-color, #d9d9d9);
6161

6262
&:empty {
6363
display: none!important;

assets/less/menus.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.builder-menu-editor {
2-
background: white;
3-
2+
background: var(--bs-body-bg, white);
3+
44
.builder-menu-editor-workspace {
55
padding: 30px;
66
}
@@ -41,10 +41,10 @@
4141
&:hover .close-btn {
4242
display: block;
4343
text-decoration: none;
44-
.opacity(0.5);
44+
opacity: 0.5;
4545

4646
&:hover {
47-
.opacity(1);
47+
opacity: 1;
4848
}
4949
}
5050
}

0 commit comments

Comments
 (0)