比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

※サンプルコード内の「#button_3」は、チャットボタン設定のボタン要素IDで設定したIDに変更ください。
※widthやheightの値は、ご希望のサイズに適宜ご変更ください。
※こちらのサンプルでは、ボタンの表示位置を右側に変更しております。
もし、デフォルト表示のまま左側に表示させたい場合は、以下赤枠内を削除してください。

...

...

画像+テキストボタンのポップアップ表示化

...

コード ブロック
/*ボタン設定側にボタン要素ID 「image_specialtag01」を設定する必要あり*/
/*画像+テキストボタンのポップアップ表示化 */
#image_specialtag01 {
  z-index:10;
  left: auto;
  right: 10px;
  bottom: 10px;
  top: auto;
}
/* 画像サイズ */
#image_specialtag01 > div > button > img{
    width: 180px;
}

/* 画像+テキスト <ボタン → ×ボタン */
#image_specialtag01 > div > div {
  z-index: 50;
  position: fixed;  
  right: 10px;
}

div#image_specialtag01 > div > div > button > span > svg > path {
    d: path("M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z");
}

パネル
panelIconIdatlassian-plus
panelIcon:plus:
panelIconText:plus:
bgColor#E6FCFF

ポップアップ

...