update oxmedium theme placeholder color; fix Ox.Select disableItem/enableItem return value
This commit is contained in:
parent
5a1dfe9821
commit
916a175849
2 changed files with 3 additions and 1 deletions
|
@ -232,6 +232,7 @@ Ox.Select = function(options, self) {
|
|||
@*/
|
||||
that.disableItem = function(id) {
|
||||
self.$menu.getItem(id).options({disabled: true});
|
||||
return that;
|
||||
};
|
||||
|
||||
/*@
|
||||
|
@ -239,6 +240,7 @@ Ox.Select = function(options, self) {
|
|||
@*/
|
||||
that.enableItem = function(id) {
|
||||
self.$menu.getItem(id).options({disabled: false});
|
||||
return that;
|
||||
};
|
||||
|
||||
/*@
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
"inputErrorColor": [192, 64, 64],
|
||||
"inputFocusBorder": [192, 192, 192],
|
||||
"inputFocusShadow": [192, 192, 192],
|
||||
"inputPlaceholderColor": [64, 64, 64],
|
||||
"inputPlaceholderColor": [96, 96, 96],
|
||||
|
||||
"labelBackground": [160, 160, 160],
|
||||
"labelDisabledColor": [128, 128, 128],
|
||||
|
|
Loading…
Reference in a new issue