Skip to content

Commit fc73d5c

Browse files
committed
fix: theming for config node popups
1 parent 31771b5 commit fc73d5c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/css/configuration-explorer-layout.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666

6767
/* Popup Window */
6868
.config-explorer-popup-window {
69-
background-color: #1c1e21;
69+
background-color: var(--config-node-popup-background-color);
7070
padding: 10px;
71-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
71+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
7272
border-radius: 5px;
7373
margin-right: 100px;
7474
width: fit-content;

src/css/custom.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
/* Config Node */
1717
--default-config-node-text-color: rgb(148, 148, 148);
1818
--config-node-highlight-text-color: black;
19+
--config-node-popup-background-color: white;
1920
--config-explorer-file-node-text-color: rgba(0, 0, 0, 0.03);
2021
--config-node-indent-size: 30px;
2122

@@ -40,6 +41,7 @@ html[data-theme="dark"] {
4041
/* Config Node */
4142
--default-config-node-text-color: rgb(128, 128, 128);
4243
--config-node-highlight-text-color: white;
44+
--config-node-popup-background-color: #1c1e21;
4345
--config-explorer-file-node-text-color: rgba(0, 0, 0, 0.03);
4446

4547
/* EOL Message */

0 commit comments

Comments
 (0)