Skip to content

Commit

Permalink
Multiple selection chosen box doesn't render include/exclude icon #11
Browse files Browse the repository at this point in the history
  • Loading branch information
hengsin committed Apr 16, 2024
1 parent b9b87ad commit 0b40401
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

<!-- this js module doesn't actually exists and it is here for iceblue_c theme version -->
<!-- since loading of js module is on demand, it doesn't cause any error as long as you don't try to load it -->
<javascript-module name="idempiere.theme.iceblue_c" version="202404162000" />
<javascript-module name="idempiere.theme.iceblue_c" version="202404162010" />
</language>
Original file line number Diff line number Diff line change
Expand Up @@ -119,28 +119,3 @@
color: white !important;
}

.btn-negate.z-button {
background: none;
border: none;
margin: 0px !important;
padding: 0px;
min-width: 16px;
width: 16px;
height: 10px;
min-height:10px;
font-size: 14px;
font-weight: lighter;
position: absolute;
top: 5px;
right: 25px;
}
.btn-negate.z-button:active, .btn-negate.z-button:focus {
border: none;
box-shadow: none;
}
.btn-negate.z-button [class^="z-icon-"] {
font-size: 14px;
padding: 0px;
line-height: 14px;
}

Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,36 @@
background: #FFFFCC !important;
border-color: #0093F9 !important;
}
<%-- include/exclude icon for chosenbox --%>
.editor-box + .btn-negate.z-button > .z-icon-ExcludeSelected::before,
.editor-box + .btn-negate.z-button > .z-icon-IncludeSelected::before {
color: #333;
}
.editor-box + .btn-negate.z-button {
background: none;
border: none;
margin: 0px !important;
padding: 0px;
min-width: 16px;
width: 16px;
height: 10px;
min-height:10px;
font-size: 14px;
font-weight: lighter;
position: absolute;
top: 3px;
right: 29px;
}
.editor-box + .btn-negate.z-button,
.editor-box + .btn-negate.z-button:focus {
border: none;
box-shadow: none;
}
.editor-box + .btn-negate.z-button [class^="z-icon-"] {
font-size: 14px;
padding: 0px;
line-height: 14px;
}

.editor-button :hover {
-webkit-filter: contrast(1.5);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@
.z-icon-Import:before {
content: "\f0ee";
}
.z-icon-IncludeSelected:before {
content: "\f05d";
}
.z-icon-Info:before {
content: "\f0eb";
}
Expand Down

0 comments on commit 0b40401

Please sign in to comment.