Skip to content

Commit

Permalink
style(mindmap): improve theme of node menu
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Dec 8, 2024
1 parent d880771 commit 7f813f7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/public/app/widgets/type_widgets/mind_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ const TPL = `
right: 20px;
bottom: 80px;
overflow: auto;
background: #fff;
background: var(--panel-bgcolor);
color: var(--main-color);
border-radius: 5px;
box-shadow: 0 1px 2px #0003;
width: 240px;
Expand All @@ -33,7 +34,7 @@ const TPL = `
}
.mind-elixir .node-menu.close {
height: 30px;
height: 29px;
width: 46px;
overflow: hidden
}
Expand Down Expand Up @@ -71,13 +72,14 @@ const TPL = `
.mind-elixir .node-menu input,
.mind-elixir .node-menu textarea {
background: #f7f9fa;
border: 1px solid #dce2e6;
border-radius: 3px;
background: var(--input-background-color);
border: 1px solid var(--panel-border-color);
border-radius: var(--bs-border-radius);
color: var(--main-color);
padding: 5px;
margin: 10px 0;
width: 100%;
box-sizing: border-box
box-sizing: border-box;
}
.mind-elixir .node-menu textarea {
Expand Down

0 comments on commit 7f813f7

Please sign in to comment.