Browse Source

BI-24431【视觉验收】FineUI问题-弹窗

es6
Young 6 years ago
parent
commit
e2f50a2703
  1. 2
      src/base/foundation/message.js
  2. 9
      src/base/layer/layer.popover.js
  3. 4
      src/css/base/foundation/bi.css
  4. 4
      src/less/base/foundation/bi.message.less

2
src/base/foundation/message.js

@ -77,7 +77,6 @@ $.extend(BI, {
el: {
type: "bi.button",
text: BI.i18nText("BI-Basic_Cancel"),
height: 30,
level: "ignore",
handler: function () {
close();
@ -92,7 +91,6 @@ $.extend(BI, {
el: {
type: "bi.button",
text: BI.i18nText("BI-Basic_OK"),
height: 30,
handler: function () {
close();
if (BI.isFunction(callback)) {

9
src/base/layer/layer.popover.js

@ -9,7 +9,8 @@ BI.Popover = BI.inherit(BI.Widget, {
SMALL: "small",
NORMAL: "normal",
BIG: "big"
}
},
HEADER_HEIGHT: 40
},
_defaultConfig: function () {
@ -56,7 +57,7 @@ BI.Popover = BI.inherit(BI.Widget, {
items: [{
el: BI.isPlainObject(o.header) ? BI.createWidget(o.header) : {
type: "bi.label",
height: 36,
height: this._constant.HEADER_HEIGHT,
text: o.header,
title: o.header,
textAlign: "left"
@ -72,7 +73,7 @@ BI.Popover = BI.inherit(BI.Widget, {
el: {
type: "bi.icon_button",
cls: "bi-message-close close-font",
height: 36,
height: this._constant.HEADER_HEIGHT,
handler: function () {
self.close();
}
@ -81,7 +82,7 @@ BI.Popover = BI.inherit(BI.Widget, {
}
}
},
height: 36
height: this._constant.HEADER_HEIGHT
},
center: {
el: {

4
src/css/base/foundation/bi.css

@ -1,5 +1,5 @@
.bi-message-title {
font-size: 16px;
font-size: 14px;
cursor: pointer;
}
.bi-message-text {
@ -15,7 +15,7 @@
font-size: 16px;
}
.bi-message-close {
font-size: 25px;
font-size: 16px;
}
.bi-message-animate {
-webkit-transition: opacity 0.3s, transform 0.4s, -webkit-transform 0.4s;

4
src/less/base/foundation/bi.message.less

@ -1,7 +1,7 @@
@import "../../index";
.bi-message-title {
font-size: 16px;
font-size: 14px;
cursor: pointer;
}
@ -15,7 +15,7 @@
}
.bi-message-close {
font-size: 25px;
font-size: 16px;
}
.bi-message-animate {

Loading…
Cancel
Save