Skip to content

Commit

Permalink
CanvasXpress Version 52.7
Browse files Browse the repository at this point in the history
  • Loading branch information
neuhausi committed Oct 27, 2024
1 parent 066efcc commit e0912a5
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 6 deletions.
68 changes: 65 additions & 3 deletions src/canvasXpress.css
Original file line number Diff line number Diff line change
Expand Up @@ -374,12 +374,10 @@ div.cX-chat-container-text {
min-height: 50px;
}

div.cX-chat-question {
p.cX-chat-question {
border: none;
background-color: var(--cx-color-extra-light-gray);
width: 100%;
margin: 0;
align-self: stretch;
display: inline;;
}

Expand Down Expand Up @@ -408,6 +406,70 @@ svg.cX-chat-thumbs {
float: left;
}

/****************
* LLM Examples *
****************/

div.cX-LLM-window {
position: absolute;
border: 1px solid #555555;
max-width: 440px;
overflow: hidden;
border-radius: 5px;
background-color: var(--cx-color-extra-light-gray);
z-index: 10000;
}

a.cX-LLM-window-close {
position: sticky;
top: 0;
left: 410px;
font-size: xx-large;
}

div.cX-LLM-examples {
position: relative;
overflow: scroll;
max-height: 1000px;
}

div.cX-LLM-content {
top: 25px;
left: 25px;
position: absolute;
}

div.cX-LLM-container {
border: 1px solid #d3d3d3;
position: relative;
border-radius: 4px;
background: white;
float: left;
margin: 5px;
max-width: 810px;
}

div.cX-LLM-title {
position: relative;
height: 40px;
line-height: 40px;
border-radius: 4px;
font-size: 22px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
text-align: center !important;
font-weight: bold;
border-bottom: 1px solid var(--cx-color-light-gray);
}

div.cX-LLM-plot {
display: flex;
align-items: center;
justify-content: center;
margin: 8px;
}

/***************
* Bin Data *
***************/
Expand Down
6 changes: 3 additions & 3 deletions src/canvasXpress.min.js

Large diffs are not rendered by default.

0 comments on commit e0912a5

Please sign in to comment.