Skip to content

Commit

Permalink
Issue #282: Fixing the bug that selected dropdown elements in Custome…
Browse files Browse the repository at this point in the history
…rInterface are not properly colored (#1654)
  • Loading branch information
stefanhaerter authored Mar 15, 2022
1 parent f00fb52 commit c43a21a
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions var/httpd/htdocs/skins/Customer/default/css/Core.InputFields.css
Original file line number Diff line number Diff line change
Expand Up @@ -603,21 +603,6 @@ input[readonly=readonly] {
height: 48px;
}

.jstree-node[aria-selected="true"] {
background-color: #c4cdfa;
background-color: var(--colNotifyOK);
}

.jstree-node > .jstree-wholerow-hovered {
background-color: #f7f7f9;
background-color: var(--colBGLight);
}

.jstree-node[aria-selected="true"] > .jstree-wholerow-hovered {
background-color: #6d83f2;
background-color: var(--colHoverLight);
}

.jstree-anchor {
pointer-events: none;
font-size: 16px;
Expand Down Expand Up @@ -1042,6 +1027,25 @@ div.InputField_ToolbarContainer ul li a:hover {
background: transparent;
}

.jstree-InputField .jstree-wholerow-ul .jstree-wholerow-clicked {
background-color: #c4cdfa;
background-color: var(--colNotifyOK);
}

.jstree-InputField .jstree-wholerow-ul .jstree-wholerow:hover,
.jstree-InputField .jstree-wholerow-ul .jstree-wholerow-hovered,
.jstree-InputField .jstree-focused > .jstree-wholerow {
background-color: #f7f7f9;
background-color: var(--colBGLight);
}

.jstree-InputField .jstree-wholerow-ul .jstree-wholerow-clicked:hover,
.jstree-InputField .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered,
.jstree-InputField .jstree-focused >.jstree-wholerow-clicked {
background-color: #6d83f2;
background-color: var(--colHoverLight);
}

/**
* @subsection jsTree theme - No Tree variant
*/
Expand Down

0 comments on commit c43a21a

Please sign in to comment.