amis icon indicating copy to clipboard operation
amis copied to clipboard

DropDownButton如何设置下拉菜单宽度

Open hu54301969 opened this issue 2 years ago • 3 comments

DropDownButton下拉菜单宽度比按钮宽很多看起来太丑了.尝试自定义样式也依旧无法改变宽度,此是有bug还是可以通过别的配置改变其宽度呢?

任何附加信息:

image

hu54301969 avatar Feb 02 '24 01:02 hu54301969

👍 Thanks for this! 🏷 I have applied any labels matching special text in your issue.

Please review the labels and make any necessary changes.

github-actions[bot] avatar Feb 02 '24 01:02 github-actions[bot]

+1

xiahao90 avatar Feb 02 '24 10:02 xiahao90

+1

xiahao90 avatar Feb 02 '24 10:02 xiahao90

因为有个minWidth,可以写style去掉,或者给个合适的值,如下:

{
    "type": "dropdown-button",
    "label": "下拉菜单",
    "style": {
      "--DropDown-menu-minWidth": "none"
    },
    "buttons": [
      {
        "type": "button",
        "label": "按钮1",
        "disabled": true
      },
      {
        "type": "button",
        "label": "按钮2"
      },
      {
        "type": "button",
        "label": "按钮3"
      }
    ]
  }

CheshireJCat avatar Apr 16 '24 08:04 CheshireJCat