insight-aid
Version:
Insight-aid: lightweight floating help + AI chatbot plugin
117 lines (104 loc) • 2.06 kB
CSS
.help-icon {
width: 18px;
height: 18px;
position: absolute;
top: 4px;
right: 4px;
z-index: 10;
cursor: pointer;
}
/* Icon */
.help-agent-icon {
cursor: pointer;
position: absolute;
bottom: 6px;
right: 6px;
/* z-index: 10; */
width: 30px;
margin: 8px;
}
.help-inline-editor {
position: relative;
background: #fff;
border: 1px solid #ccc;
border-radius: 6px;
padding: 12px;
margin:0px 20px 40px 20px;
font-size: 14px;
}
/* ✅ Logo inside editor */
.help-inline-editor .help-editor-logo {
width: 40px;
margin-bottom: 10px;
display: block;
}
.help-inline-editor .toolbar {
display: flex;
gap: 6px;
margin-bottom: 8px;
}
.help-inline-editor .toolbar button {
padding: 4px 8px;
font-weight: bold;
cursor: pointer;
border: 1px solid #aaa;
background: white;
border-radius: 4px;
}
.help-inline-editor .editor {
min-height: 120px;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
background: #fdfdfd;
overflow-y: auto;
}
.help-inline-editor .btn-container {
display: flex;
justify-content: flex-end;
gap: 8px;
margin-top: 12px;
}
.help-inline-editor .btn-save {
background: #007bff;
color: white;
border: none;
padding: 6px 12px;
border-radius: 4px;
font-size: 13px;
cursor: pointer;
}
.help-inline-editor .btn-cancel {
background: #6c757d;
color: white;
border: none;
padding: 6px 12px;
border-radius: 4px;
font-size: 13px;
cursor: pointer;
}
.help-inline-editor .help-msg {
font-size: 12px;
color: red;
margin-top: 6px;
}
.help-inline-editor .text-content {
font-size: 14px;
line-height: 1.5;
color: #333;
border-left: 3px solid #007bff;
background-color: #f9f9f9;
padding: 10px;
border-radius: 4px;
margin-top: 8px;
}
.help-inline-editor .btn-close {
position: absolute;
top: 6px;
right: 6px;
background: transparent;
color: #555;
border: none;
font-size: 16px;
cursor: pointer;
}