|
|
@ -50912,7 +50912,7 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, { |
|
|
|
this.colorEditor = BI.createWidget(o.editor, { |
|
|
|
this.colorEditor = BI.createWidget(o.editor, { |
|
|
|
type: "bi.color_picker_editor", |
|
|
|
type: "bi.color_picker_editor", |
|
|
|
value: o.value, |
|
|
|
value: o.value, |
|
|
|
cls: "bi-background bi-border-bottom", |
|
|
|
cls: "bi-header-background bi-border-bottom", |
|
|
|
height: 30 |
|
|
|
height: 30 |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
@ -50988,6 +50988,7 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
this.more = BI.createWidget({ |
|
|
|
this.more = BI.createWidget({ |
|
|
|
type: "bi.combo", |
|
|
|
type: "bi.combo", |
|
|
|
|
|
|
|
cls: "bi-border-top", |
|
|
|
container: null, |
|
|
|
container: null, |
|
|
|
direction: "right,top", |
|
|
|
direction: "right,top", |
|
|
|
isNeedAdjustHeight: false, |
|
|
|
isNeedAdjustHeight: false, |
|
|
@ -51668,7 +51669,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { |
|
|
|
errorText: BI.i18nText("BI-Color_Picker_Error_Text"), |
|
|
|
errorText: BI.i18nText("BI-Color_Picker_Error_Text"), |
|
|
|
allowBlank: true, |
|
|
|
allowBlank: true, |
|
|
|
value: 255, |
|
|
|
value: 255, |
|
|
|
width: 32, |
|
|
|
width: 30, |
|
|
|
height: 20 |
|
|
|
height: 20 |
|
|
|
}); |
|
|
|
}); |
|
|
|
BI.each(Ws, function (i, w) { |
|
|
|
BI.each(Ws, function (i, w) { |
|
|
@ -51687,8 +51688,8 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { |
|
|
|
this.none = BI.createWidget({ |
|
|
|
this.none = BI.createWidget({ |
|
|
|
type: "bi.icon_button", |
|
|
|
type: "bi.icon_button", |
|
|
|
cls: "auto-color-icon", |
|
|
|
cls: "auto-color-icon", |
|
|
|
width: 24, |
|
|
|
width: 16, |
|
|
|
height: 24, |
|
|
|
height: 16, |
|
|
|
iconWidth: 16, |
|
|
|
iconWidth: 16, |
|
|
|
iconHeight: 16, |
|
|
|
iconHeight: 16, |
|
|
|
title: BI.i18nText("BI-Basic_Auto") |
|
|
|
title: BI.i18nText("BI-Basic_Auto") |
|
|
@ -51709,8 +51710,8 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { |
|
|
|
this.transparent = BI.createWidget({ |
|
|
|
this.transparent = BI.createWidget({ |
|
|
|
type: "bi.icon_button", |
|
|
|
type: "bi.icon_button", |
|
|
|
cls: "trans-color-icon", |
|
|
|
cls: "trans-color-icon", |
|
|
|
width: 24, |
|
|
|
width: 16, |
|
|
|
height: 24, |
|
|
|
height: 16, |
|
|
|
iconWidth: 16, |
|
|
|
iconWidth: 16, |
|
|
|
iconHeight: 16, |
|
|
|
iconHeight: 16, |
|
|
|
title: BI.i18nText("BI-Transparent_Color") |
|
|
|
title: BI.i18nText("BI-Transparent_Color") |
|
|
@ -51761,14 +51762,16 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, { |
|
|
|
width: 30 |
|
|
|
width: 30 |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: this.transparent, |
|
|
|
el: this.transparent, |
|
|
|
width: 24 |
|
|
|
width: 16, |
|
|
|
|
|
|
|
lgap: 5 |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: this.none, |
|
|
|
el: this.none, |
|
|
|
width: 24 |
|
|
|
width: 16, |
|
|
|
|
|
|
|
lgap: 5 |
|
|
|
}] |
|
|
|
}] |
|
|
|
}, |
|
|
|
}, |
|
|
|
left: 10, |
|
|
|
left: 10, |
|
|
|
right: 20, |
|
|
|
right: 10, |
|
|
|
top: 0, |
|
|
|
top: 0, |
|
|
|
bottom: 0 |
|
|
|
bottom: 0 |
|
|
|
}] |
|
|
|
}] |
|
|
|