找到多个答案后,QnA Maker自定义响应卡

时间:2018-09-05 16:30:26

标签: css3 botframework direct-line-botframework qnamaker

QnAMaker获得多个可能的答案时收到的响应卡太大,不合适。  enter image description here

使用的频道:DirectLine

我已经查看了botchat.css(https://cdn.botframework.com/botframework-webchat/latest/botchat.css),但找不到可以修改以将卡的大小更改为更合适的类或ID的类。

经过一番调查,在Google的开发人员模式下,我找到了导致这种行为的代码段:

element.style 
{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    **flex: 0 1 100%;**
}

更改后,在dev mod中将flex更改为 flex:0 1 0; ,该卡似乎还可以。但是我在botchat.css的任何地方都看不到此参考 enter image description here

请告知我如何使该卡更加用户友好,因为DirectLine上的设计似乎是一个问题

0 个答案:

没有答案