/********************** チャットメッセージ入力欄 **********************/ .chat-message-input { display: flex; flex-direction: column; position: absolute; left: 50%; bottom: 20px; transform: translate(-50%, 0); -webkit-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); width: calc(100% - 144px); max-width: 500px; border-radius: 8px; background-color: #ffffff; border: 1px solid #666666; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif !important; } .chat-message-input * { box-sizing: border-box; position: relative; } .chat-message-input > .upper { display: flex; flex-direction: row; gap: 12px; width: 100%; padding: 0px 12px 8px 12px; } .chat-message-input > .upper > .chat-icon { height: 24px; line-height: 24px; margin-top: 10px; font-size: 20px; color: #888888; } .chat-message-input > .upper > .chat-textarea { flex: 1 1 1px; height: 28px; line-height: 150%; margin-top: 8px; border: none; font-size: 16px; outline: none; resize: none; overflow: hidden; font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif; background-color: transparent; } .chat-message-input > .upper > .chat-textarea::placeholder { color: #aaaaaa; font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif; } .chat-message-input > .upper > .mic-button { height: 24px; line-height: 24px; margin-top: 10px; font-size: 20px; color: #888888; transition: 0.5s; cursor: pointer; } .chat-message-input > .upper > .mic-button:hover { color: #6283D0; } .chat-message-input.is-speech-recognizing > .upper > .chat-textarea { text-align: center; } .chat-message-input.is-speech-recognizing > .upper > .chat-textarea::placeholder { color: #4169e1 !important; } .chat-message-input.is-speech-recognizing > .upper > .mic-button { color: #dc143c !important; } .chat-message-input > .lower { display: none; flex-direction: row; width: 100%; padding: 0px 12px; } .chat-message-input > .lower > .chat-recommends { flex: 1 1 1px; } .chat-message-input > .lower > .chat-recommends > .chat-recommend { display: inline-block; height: 32px; line-height: 32px; padding: 0px 12px; border-radius: 8px; margin-right: 12px; margin-bottom: 12px; background-color: #f0f3fb; border: 1px solid #3d66c7; font-size: 16px; color: #6283D0; transition: 0.5s; cursor: pointer; } .chat-message-input > .lower > .chat-recommends > .chat-recommend:hover { background-color: #d1dbfa; } .chat-message-input > .lower > .menu-button { width: 32px; height: 32px; line-height: 32px; border-radius: 8px; background-color: #f0f3fb; border: 1px solid #3d66c7; font-size: 16px; color: #6283D0; text-align: center; cursor: pointer; transition: 0.5s; } .chat-message-input > .lower > .menu-button:hover { background-color: #d1dbfa; } .chat-message-input > .lower > .menu-button > i { line-height: inherit; } .top-page .chat-message-input { opacity: 0; } .top-page .chat-message-input > .upper > .chat-textarea { min-height: 76px; } .top-page .chat-message-input > .lower { display: none; } .chat-message-input.disabled { background-color: #cccccc; cursor: not-allowed; pointer-events: none; } .chat-message-input.disabled > .upper > .chat-textarea { background-color: #cccccc; pointer-events: none; } .chat-message-input.disabled > .lower { opacity: 0.5; } /******************** チャットメッセージ一覧 ********************/ .chat-message-list { display: flex; flex-direction: column; gap: 12px; position: absolute; top: 20px; left: 20px; width: 300px; height: calc(100% - 450px); transition: 0.5s; font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif !important; pointer-events: none; } .chat-message-list * { box-sizing: border-box; position: relative; } .chat-message-list > .ai-warning-label { color: #e71010; font-weight: bold; font-size: 14px; line-height: 150%; padding-left: 47px; } .chat-message-list > .scroll-y { display: flex; flex-direction: column; width: 100%; flex: 1 1 1px; padding-bottom: 4px; overflow-y: auto; scrollbar-width: none; } .chat-message-list > .scroll-y.can-scroll-up { mask-image: linear-gradient(to top, black calc(100% - 64px), transparent); -webkit-mask-image: linear-gradient(to top, black calc(100% - 64px), transparent); } .chat-message-list > .scroll-y.can-scroll-down { mask-image: linear-gradient(to bottom, black calc(100% - 64px), transparent); -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 64px), transparent); } .chat-message-list > .scroll-y.can-scroll-up.can-scroll-down { mask-image: linear-gradient(to bottom, transparent, black 64px, black calc(100% - 64px), transparent) !important; -webkit-mask-image: linear-gradient(to bottom, transparent, black 64px, black calc(100% - 64px), transparent) !important; } .chat-message-list > .scroll-y::-webkit-scrollbar { display: none; } .chat-message-list > .scroll-y > .chat-message-list-items { display: flex; flex-direction: column; flex: 1 1 1px; gap: 12px; justify-content: inherit; } /* .chat-message-list:hover > .chat-message-list-items > .chat-message-list-item { opacity: 1.0; } */ /*************************** チャットメッセージ一覧アイテム ***************************/ .chat-message-list-item { display: flex; flex-direction: row; gap: 10px; transition: 0.5s; /* opacity: 0.5; */ font-family: "BIZ UDPGothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif !important; } .chat-message-list-item * { box-sizing: border-box; position: relative; } .chat-message-list-item.unread { opacity: 1.0; } .chat-message-list-item > .icon { width: 36px; height: 36px; line-height: 36px; border-radius: 18px; background-color: #6283D0; color: #ffffff; font-size: 22px; text-align: center; pointer-events: auto; } .chat-message-list-item > .icon > i { line-height: inherit; } .chat-message-list-item > .message-bubble { flex: 1 1 1px; padding: 6px 14px; border-radius: 10px; line-height: 150%; background-color: #6283D0; border: 1px solid #999999; font-size: 14px; color: #ffffff; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); transition: 0.5s; pointer-events: auto; } .chat-message-list-item > .message-bubble > .message { min-width: 32px; overflow-wrap: anywhere; } .chat-message-list-item > .message-bubble > .message > .teiryo { color: #3cb371; font-weight: bold; } .chat-message-list-item > .message-bubble > .message > .teisei { color: #FF6047; font-weight: bold; } .chat-message-list-item > .message-bubble > .message > .link { color: #6283D0; cursor: pointer; } .chat-message-list-item > .message-bubble > .message > .link:hover { text-decoration: underline; } .chat-message-list-item > .message-bubble > .message > .caret { display: inline-block; width: 10px; height: 16px; background-color: #999999; vertical-align: middle; border-bottom: 2px solid #ffffff; } .chat-message-list-item[data-z-role="user"] > .icon { visibility: hidden; } .chat-message-list-item[data-z-role="user"] > .icon > i.fa-headset { display: none; } .chat-message-list-item[data-z-role="assistant"] > .icon { background-color: #777777; } .chat-message-list-item[data-z-role="assistant"] > .icon > i.fa-user { display: none; } .chat-message-list-item[data-z-role="assistant"] > .message-bubble { color: #000000; background-color: #F5F5F5; } .chat-message-list-item > .message-bubble > .thinking-indicator { display: none; flex-direction: row; align-items: center; gap: 8px; height: 100%; } .chat-message-list-item > .message-bubble > .thinking-indicator > .thinking-indicator-dot { width: 5px; height: 5px; background-color: #000000; border-radius: 50%; animation-name: thinking-indicator-animation; animation-duration: 1.3s; animation-timing-function: linear; animation-iteration-count: infinite; } .chat-message-list-item > .message-bubble > .thinking-indicator > .thinking-indicator-dot:nth-of-type(2) { animation-delay: 0.15s; } .chat-message-list-item > .message-bubble > .thinking-indicator > .thinking-indicator-dot:nth-of-type(3) { animation-delay: 0.3s; } .chat-message-list-item[data-z-is-thinking="true"] > .message-bubble { flex: none; padding: 10px 20px; } .chat-message-list-item[data-z-is-thinking="true"] > .message-bubble > .message { display: none; } .chat-message-list-item[data-z-is-thinking="true"] > .message-bubble > .thinking-indicator { display: flex; } @keyframes thinking-indicator-animation { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-4px); } } .chat-message-list-item > .message-bubble > .choices { display: none; flex-wrap: wrap; gap: 6px 8px; margin-top: 8px; } .chat-message-list-item > .message-bubble > .choices > .choice { display: inline-block; height: 28px; line-height: 28px; padding: 0px 8px; border-radius: 8px; background-color: #f0f3fb; border: 1px solid #3d66c7; font-size: 14px; color: #6283D0; transition: 0.5s; cursor: pointer; } .chat-message-list-item > .message-bubble > .choices > .choice:hover { background-color: #d1dbfa; } /****** ボイス再生確認ダイアログ ******/ .usage-notes-dialog { display: none; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.75); flex-direction: column; justify-content: center; z-index: 100; } .usage-notes-dialog > .dialog-body { text-align: center; } .usage-notes-dialog > .dialog-body > .message { color: #ffffff; font-size: 16px; } .usage-notes-dialog > .dialog-body > .ok-button { display: inline-block; height: 32px; line-height: 32px; padding: 0px 12px; margin-top: 16px; border-radius: 8px; background-color: #f0f3fb; border: 1px solid #3d66c7; font-size: 16px; color: #6283D0; transition: 0.5s; cursor: pointer; min-width: 80px; } .usage-notes-dialog > .dialog-body > .ok-button:hover { background-color: #d1dbfa; } /****** その他 ******/ #x-title-wrapper { left: auto !important; right: 20px !important; width: auto !important; font-size: 14px !important; }