Skip to content

Commit

Permalink
Merge pull request #891 from jdi-testing/hotfix_876
Browse files Browse the repository at this point in the history
issue_876: Fixed displaying submenu in context menu
  • Loading branch information
arslanbekova committed Jan 6, 2023
2 parents bcdace7 + 82359b3 commit 735e73d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Expand Up @@ -3,7 +3,7 @@
"name": "JDN",
"description": "JDN – helps Test Automation Engineer to create Page Objects in the test automation framework and speed up test development",
"devtools_page": "index.html",
"version": "3.6.333",
"version": "3.6.334",
"icons": {
"128": "icon128.png"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jdn-ai-chrome-extension",
"version": "3.6.333",
"version": "3.6.334",
"description": "jdn-ai chrome extension",
"scripts": {
"start": "webpack --watch --env devenv",
Expand Down
20 changes: 10 additions & 10 deletions src/pageServices/contentScripts/css/contextMenu.less
Expand Up @@ -41,6 +41,16 @@ div[id^="jdn_cm_"] {
box-sizing: border-box;
}

&.cm_border_right > ul ul {
left: unset;
right: 100%;
}

&.cm_border_bottom > ul ul {
top: unset;
bottom: 0;
}

ul {
list-style-type: none;
padding: 0;
Expand Down Expand Up @@ -135,16 +145,6 @@ div[id^="jdn_cm_"] {
}
}

&.cm_border_right > ul ul {
left: unset;
right: 100%;
}

&.cm_border_bottom > ul ul {
top: unset;
bottom: 0;
}

&[disabled=""] {
color: #777;
cursor: default;
Expand Down

0 comments on commit 735e73d

Please sign in to comment.