瀏覽代碼

Merge remote-tracking branch 'origin/dev' into dev

guq 7 年之前
父節點
當前提交
f05ae5488f
共有 2 個文件被更改,包括 7 次插入1 次删除
  1. 1 1
      frontend/saas-web/app/view/core/form/RemoteCombo.js
  2. 6 0
      frontend/saas-web/app/view/main/Main.scss

+ 1 - 1
frontend/saas-web/app/view/core/form/RemoteCombo.js

@@ -37,7 +37,7 @@ Ext.define('saas.view.core.form.RemoteCombo', {
             picker;
         var count = this.store.getCount();
         var pickerCfg = Ext.apply({
-                height: count>5?150:30*count,
+                height: count>5?248:(33*count+50),
                 hiddenBtn:me.hiddenBtn,
                 xtype: 'boundlistadd',
                 id: me.id + '-picker',

+ 6 - 0
frontend/saas-web/app/view/main/Main.scss

@@ -308,3 +308,9 @@ body > .x-mask {
     margin-top: -7.5px;
     margin-left: 55px;
 }
+
+.x-boundlist-item {
+    text-overflow: ellipsis;
+    overflow: hidden;
+    white-space: nowrap;
+}