diff --git a/demo/js/case/combo/demo.bubble_combo.js b/demo/js/case/combo/demo.bubble_combo.js index 292a48b85..00072f6bc 100644 --- a/demo/js/case/combo/demo.bubble_combo.js +++ b/demo/js/case/combo/demo.bubble_combo.js @@ -100,7 +100,7 @@ Demo.Func = BI.inherit(BI.Widget, { element: this, items: [{ el: combo1, - left: 10, + left: 150, top: 10 }, { el: combo2, diff --git a/public/css/font.css b/public/css/font.css index 3c6218046..27deae83b 100644 --- a/public/css/font.css +++ b/public/css/font.css @@ -8,7 +8,6 @@ font-family: 'fineui'; font-style: normal; -webkit-font-smoothing: antialiased; - -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } .close-font .b-font { diff --git a/src/base/single/editor/editor.textarea.js b/src/base/single/editor/editor.textarea.js index f87b365d2..fc04fca2d 100644 --- a/src/base/single/editor/editor.textarea.js +++ b/src/base/single/editor/editor.textarea.js @@ -32,7 +32,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { }, left: 10, right: 10, - top: 8, + top: 4, bottom: 8 }] }); @@ -81,9 +81,9 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { if (!this.watermark) { this.watermark = BI.createWidget({ type: "bi.text_button", - cls: "bi-water-mark", + cls: "bi-water-mark cursor-default", textAlign: "left", - height: 30, + height: 22, text: o.watermark, invalid: o.invalid, disabled: o.disabled diff --git a/src/css/core/normalize2.css b/src/css/core/normalize2.css index 71f98ac27..a34fb7b2b 100644 --- a/src/css/core/normalize2.css +++ b/src/css/core/normalize2.css @@ -46,6 +46,5 @@ li { } i { -webkit-font-smoothing: antialiased; - -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } diff --git a/src/css/resource/font.css b/src/css/resource/font.css index 59f66a14d..7d8cfb5c4 100644 --- a/src/css/resource/font.css +++ b/src/css/resource/font.css @@ -8,7 +8,6 @@ font-family: 'fineui'; font-style: normal; -webkit-font-smoothing: antialiased; - -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } .close-font .b-font { diff --git a/src/less/core/normalize2.less b/src/less/core/normalize2.less index 0efbc22fb..cb936708d 100644 --- a/src/less/core/normalize2.less +++ b/src/less/core/normalize2.less @@ -59,6 +59,5 @@ li { i { //font-style: normal; -webkit-font-smoothing: antialiased; - -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } diff --git a/src/less/image.less b/src/less/image.less index dee3368aa..3f33a421c 100644 --- a/src/less/image.less +++ b/src/less/image.less @@ -342,7 +342,6 @@ @baseProperty: { font-style: normal; -webkit-font-smoothing: antialiased; - -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; }; diff --git a/src/widget/dynamicdate/dynamicdate.combo.js b/src/widget/dynamicdate/dynamicdate.combo.js index b93cd6394..5f6e7336c 100644 --- a/src/widget/dynamicdate/dynamicdate.combo.js +++ b/src/widget/dynamicdate/dynamicdate.combo.js @@ -52,6 +52,7 @@ BI.DynamicDateCombo = BI.inherit(BI.Single, { max: opts.maxDate, format: opts.format, allowEdit: opts.allowEdit, + watermark: opts.watermark, height: opts.height, value: opts.value, ref: function () { diff --git a/src/widget/dynamicdate/dynamicdate.trigger.js b/src/widget/dynamicdate/dynamicdate.trigger.js index d896c4539..ebec4efc9 100644 --- a/src/widget/dynamicdate/dynamicdate.trigger.js +++ b/src/widget/dynamicdate/dynamicdate.trigger.js @@ -14,7 +14,8 @@ BI.DynamicDateTrigger = BI.inherit(BI.Trigger, { max: "2099-12-31", // 最大日期 height: 24, format: "", // 显示的日期格式化方式 - allowEdit: true // 是否允许编辑 + allowEdit: true, // 是否允许编辑 + watermark: "" }, _init: function () { @@ -40,11 +41,11 @@ BI.DynamicDateTrigger = BI.inherit(BI.Trigger, { hgap: c.hgap, vgap: c.vgap, allowBlank: true, - watermark: BI.i18nText("BI-Basic_Unrestricted"), + watermark: BI.isKey(o.watermark) ? o.watermark : BI.i18nText("BI-Basic_Unrestricted"), errorText: function () { var str = ""; if (!BI.isKey(o.format)) { - str = self.editor.isEditing() ? BI.i18nText("BI-Date_Trigger_Error_Text"): BI.i18nText("BI-Year_Trigger_Invalid_Text"); + str = self.editor.isEditing() ? BI.i18nText("BI-Date_Trigger_Error_Text") : BI.i18nText("BI-Year_Trigger_Invalid_Text"); } return str; }, diff --git a/src/widget/dynamicdatetime/dynamicdatetime.combo.js b/src/widget/dynamicdatetime/dynamicdatetime.combo.js index ee5e9429b..6db4f7fde 100644 --- a/src/widget/dynamicdatetime/dynamicdatetime.combo.js +++ b/src/widget/dynamicdatetime/dynamicdatetime.combo.js @@ -51,6 +51,7 @@ BI.DynamicDateTimeCombo = BI.inherit(BI.Single, { min: opts.minDate, max: opts.maxDate, allowEdit: opts.allowEdit, + watermark: opts.watermark, format: opts.format, height: opts.height, value: opts.value, diff --git a/src/widget/dynamicdatetime/dynamicdatetime.trigger.js b/src/widget/dynamicdatetime/dynamicdatetime.trigger.js index d73e65296..1d3234aa1 100644 --- a/src/widget/dynamicdatetime/dynamicdatetime.trigger.js +++ b/src/widget/dynamicdatetime/dynamicdatetime.trigger.js @@ -14,7 +14,8 @@ BI.DynamicDateTimeTrigger = BI.inherit(BI.Trigger, { max: "2099-12-31", // 最大日期 height: 24, format: "", // 显示的日期格式化方式 - allowEdit: true // 是否允许编辑 + allowEdit: true, // 是否允许编辑 + watermark: "" }, _init: function () { @@ -40,7 +41,7 @@ BI.DynamicDateTimeTrigger = BI.inherit(BI.Trigger, { hgap: c.hgap, vgap: c.vgap, allowBlank: true, - watermark: BI.i18nText("BI-Basic_Unrestricted"), + watermark: BI.isKey(o.watermark) ? o.watermark : BI.i18nText("BI-Basic_Unrestricted"), errorText: function () { var str = ""; if (!BI.isKey(o.format)) { diff --git a/src/widget/selecttree/selecttree.combo.js b/src/widget/selecttree/selecttree.combo.js index 461b28b2f..900c5fa41 100644 --- a/src/widget/selecttree/selecttree.combo.js +++ b/src/widget/selecttree/selecttree.combo.js @@ -7,7 +7,7 @@ BI.SelectTreeCombo = BI.inherit(BI.Widget, { _defaultConfig: function () { return BI.extend(BI.SelectTreeCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-select-tree-combo", - height: 30, + height: 24, text: "", items: [], value: "", diff --git a/src/widget/time/time.combo.js b/src/widget/time/time.combo.js index 2d4693504..3f5e5d497 100644 --- a/src/widget/time/time.combo.js +++ b/src/widget/time/time.combo.js @@ -66,6 +66,7 @@ el: { type: "bi.time_trigger", allowEdit: opts.allowEdit, + watermark: opts.watermark, format: opts.format, value: opts.value, ref: function (_ref) { @@ -212,6 +213,8 @@ BI.TimeCombo.EVENT_CONFIRM = "EVENT_CONFIRM"; BI.TimeCombo.EVENT_CHANGE = "EVENT_CHANGE"; + BI.TimeCombo.EVENT_VALID = "EVENT_VALID"; + BI.TimeCombo.EVENT_ERROR = "EVENT_ERROR"; BI.TimeCombo.EVENT_BEFORE_POPUPVIEW = "EVENT_BEFORE_POPUPVIEW"; BI.shortcut("bi.time_combo", BI.TimeCombo); })(); \ No newline at end of file diff --git a/src/widget/time/time.trigger.js b/src/widget/time/time.trigger.js index f61dfe718..0de374465 100644 --- a/src/widget/time/time.trigger.js +++ b/src/widget/time/time.trigger.js @@ -49,7 +49,7 @@ value: this._formatValue(o.value), hgap: 4, allowBlank: true, - watermark: BI.i18nText("BI-Basic_Unrestricted"), + watermark: BI.isKey(o.watermark) ? o.watermark : BI.i18nText("BI-Basic_Unrestricted"), title: BI.bind(this._getTitle, this), listeners: [{ eventName: "EVENT_KEY_DOWN", diff --git a/ui/css/font.css b/ui/css/font.css index d27f87ace..fa727e3c3 100644 --- a/ui/css/font.css +++ b/ui/css/font.css @@ -8,7 +8,6 @@ font-family: 'fineui'; font-style: normal; -webkit-font-smoothing: antialiased; - -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; } .close-font .b-font {