highlightColor now set correctly
This commit is contained in:
parent
3b6402a682
commit
437320b4ad
4
dist/iwmlib.js
vendored
4
dist/iwmlib.js
vendored
@ -6070,6 +6070,7 @@
|
|||||||
notchSize = 10,
|
notchSize = 10,
|
||||||
maxWidth = 800,
|
maxWidth = 800,
|
||||||
backgroundColor = '#EEE',
|
backgroundColor = '#EEE',
|
||||||
|
highlightBackgroundColor = '#EEE',
|
||||||
normalColor = '#444',
|
normalColor = '#444',
|
||||||
highlightColor = 'black',
|
highlightColor = 'black',
|
||||||
notchPosition = 'bottomLeft',
|
notchPosition = 'bottomLeft',
|
||||||
@ -6081,6 +6082,7 @@
|
|||||||
this.switchPos = switchPos;
|
this.switchPos = switchPos;
|
||||||
this.spacing = spacing;
|
this.spacing = spacing;
|
||||||
this.highlightColor = highlightColor;
|
this.highlightColor = highlightColor;
|
||||||
|
this.highlightBackgroundColor = highlightBackgroundColor
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Setup menu with a dictionary of command labels and command functions.
|
/** Setup menu with a dictionary of command labels and command functions.
|
||||||
@ -6140,6 +6142,7 @@
|
|||||||
update(key, highlight = false) {
|
update(key, highlight = false) {
|
||||||
let text = this.items[key];
|
let text = this.items[key];
|
||||||
text.style.color = (highlight) ? this.highlightColor : this.normalColor;
|
text.style.color = (highlight) ? this.highlightColor : this.normalColor;
|
||||||
|
text.style.background = (highlight) ? this.highlightBackgroundColor : this.backgroundColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Mouse over handöer.
|
/** Mouse over handöer.
|
||||||
@ -6197,6 +6200,7 @@
|
|||||||
maxWidth = 800,
|
maxWidth = 800,
|
||||||
keepWithin = null,
|
keepWithin = null,
|
||||||
backgroundColor = '#EEE',
|
backgroundColor = '#EEE',
|
||||||
|
highlightBackgroundColor = '#EEE', highlightColor, highlightBackgroundColor,
|
||||||
normalColor = '#444',
|
normalColor = '#444',
|
||||||
autoClose = true } = {}) {
|
autoClose = true } = {}) {
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@ export default class PopupMenu extends Popup {
|
|||||||
notchSize = 10,
|
notchSize = 10,
|
||||||
maxWidth = 800,
|
maxWidth = 800,
|
||||||
backgroundColor = '#EEE',
|
backgroundColor = '#EEE',
|
||||||
|
highlightBackgroundColor = '#EEE',
|
||||||
normalColor = '#444',
|
normalColor = '#444',
|
||||||
highlightColor = 'black',
|
highlightColor = 'black',
|
||||||
notchPosition = 'bottomLeft',
|
notchPosition = 'bottomLeft',
|
||||||
@ -42,6 +43,7 @@ export default class PopupMenu extends Popup {
|
|||||||
this.switchPos = switchPos
|
this.switchPos = switchPos
|
||||||
this.spacing = spacing
|
this.spacing = spacing
|
||||||
this.highlightColor = highlightColor
|
this.highlightColor = highlightColor
|
||||||
|
this.highlightBackgroundColor = highlightBackgroundColor
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Setup menu with a dictionary of command labels and command functions.
|
/** Setup menu with a dictionary of command labels and command functions.
|
||||||
@ -101,6 +103,7 @@ export default class PopupMenu extends Popup {
|
|||||||
update(key, highlight = false) {
|
update(key, highlight = false) {
|
||||||
let text = this.items[key]
|
let text = this.items[key]
|
||||||
text.style.color = (highlight) ? this.highlightColor : this.normalColor
|
text.style.color = (highlight) ? this.highlightColor : this.normalColor
|
||||||
|
text.style.background = (highlight) ? this.highlightBackgroundColor : this.backgroundColor
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Mouse over handöer.
|
/** Mouse over handöer.
|
||||||
@ -158,6 +161,7 @@ export default class PopupMenu extends Popup {
|
|||||||
maxWidth = 800,
|
maxWidth = 800,
|
||||||
keepWithin = null,
|
keepWithin = null,
|
||||||
backgroundColor = '#EEE',
|
backgroundColor = '#EEE',
|
||||||
|
highlightBackgroundColor = '#EEE',
|
||||||
normalColor = '#444',
|
normalColor = '#444',
|
||||||
autoClose = true } = {}) {
|
autoClose = true } = {}) {
|
||||||
|
|
||||||
@ -171,7 +175,7 @@ export default class PopupMenu extends Popup {
|
|||||||
let popup = new PopupMenu({
|
let popup = new PopupMenu({
|
||||||
parent, fontSize, padding, zIndex, spacing, switchPos, notchSize,
|
parent, fontSize, padding, zIndex, spacing, switchPos, notchSize,
|
||||||
notchPosition,
|
notchPosition,
|
||||||
maxWidth, backgroundColor, normalColor,
|
maxWidth, backgroundColor, normalColor, highlightColor, highlightBackgroundColor,
|
||||||
notchPosition, keepWithin, autoClose
|
notchPosition, keepWithin, autoClose
|
||||||
})
|
})
|
||||||
popup.showAt(commands, point)
|
popup.showAt(commands, point)
|
||||||
|
Loading…
Reference in New Issue
Block a user