...
コード ブロック |
---|
|
@media screen and (max-width:896px) {
div#button_3>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");
}
div#button_3>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");
}
div#button_3>div:nth-child(1) p {
/* 画像+テキストフォントサイズ調整 */
font-size: 10px;
}
div#button_3>div>div>button>span>svg {
/* 閉じるボタンフォントサイズ変更 */
font-size: 12px;
}
div#button_3 {
/* 画像+テキスト 表示位置左→右変更 */
width: 120px;
height: 120px;
left: unset;
right: 30px;
bottom: 80px;
z-index: 100;
}
} |
パネル |
---|
panelIconId | atlassian-light_bulb_on |
---|
panelIcon | :light_bulb_on: |
---|
panelIconText | :light_bulb_on: |
---|
bgColor | #DEEBFF |
---|
|
その他 |
パネル |
---|
panelIconId | atlassian-plus |
---|
panelIcon | :plus: |
---|
panelIconText | :plus: |
---|
bgColor | #E6FCFF |
---|
|
ボタン設定毎に別のCSSを適用させたい |
...
使用例)ボタン設定4(ボタン要素ID:button4)のみメッセージ入力欄とメニューのオペレーター切り替えボタンを非表示にしたい
コード ブロック |
---|
|
._ChatButtonID_button4 #_ChatWindowUserInputRoot {
display: none;
}
._ChatButtonID_button4 #_ChatMenuItem_ModeSwitch {
display: none;
} |