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