mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-09 03:26:38 +08:00
538 lines
9.2 KiB
SCSS
538 lines
9.2 KiB
SCSS
@import "./window.scss";
|
|
|
|
@mixin container {
|
|
|
|
background-color: var(--white);
|
|
border: 3px solid hsla(0, 0%, 100%, .2);
|
|
border-radius: 20px;
|
|
box-shadow: var(--shadow);
|
|
color: var(--black);
|
|
background-color: var(--white);
|
|
min-width: 600px;
|
|
min-height: 480px;
|
|
max-width: 900px;
|
|
|
|
display: flex;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
|
|
width: var(--window-width);
|
|
height: var(--window-height);
|
|
}
|
|
|
|
.container {
|
|
@include container();
|
|
}
|
|
|
|
@media only screen and (min-width: 600px) {
|
|
.tight-container {
|
|
--window-width: 100vw;
|
|
--window-height: 100vh;
|
|
--window-content-width: calc(100% - var(--sidebar-width));
|
|
|
|
@include container();
|
|
|
|
max-width: 100vw;
|
|
max-height: 100vh;
|
|
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
.sidebar {
|
|
top: 0;
|
|
width: var(--sidebar-width);
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
background-color: var(--second);
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: inset -2px 0px 2px 0px rgb(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.window-content {
|
|
width: var(--window-content-width);
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.mobile {
|
|
display: none;
|
|
}
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
.container {
|
|
min-height: unset;
|
|
min-width: unset;
|
|
max-height: unset;
|
|
min-width: unset;
|
|
border: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.sidebar {
|
|
position: absolute;
|
|
left: -100%;
|
|
z-index: 999;
|
|
height: 100vh;
|
|
transition: all ease 0.3s;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.sidebar-show {
|
|
left: 0;
|
|
}
|
|
|
|
.mobile {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.sidebar-header {
|
|
position: relative;
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.sidebar-logo {
|
|
// position: absolute;
|
|
// right: 0;
|
|
// bottom: 18px;
|
|
width: 222px;
|
|
|
|
}
|
|
|
|
.sidebar-title {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sidebar-sub-title {
|
|
font-size: 12px;
|
|
font-weight: 400px;
|
|
color: var(--text);
|
|
}
|
|
|
|
.sidebar-body {
|
|
flex: 1;
|
|
overflow: auto;
|
|
}
|
|
|
|
.chat-list {}
|
|
|
|
.chat-item {
|
|
padding: 12px 10px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
box-shadow: 0px 16px 32px -16px rgba(0, 0, 0, 0.5),
|
|
0px 0px 0px 0.9375px rgba(0, 0, 0, 0.5);
|
|
border-radius: 10px;
|
|
margin-bottom: 14px;
|
|
transition: all 0.5s ease;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
border: 2px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border: var(--border-in-light);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@keyframes slide-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0px);
|
|
}
|
|
}
|
|
|
|
.chat-item:hover {
|
|
background-color: var(--hover-color);
|
|
}
|
|
|
|
|
|
.chat-item-selected {
|
|
border: 2px solid transparent;
|
|
background-clip: padding-box,
|
|
border-box;
|
|
background-origin: padding-box,
|
|
border-box;
|
|
background-image: linear-gradient(to right, #292937, #292937),
|
|
linear-gradient(90deg, rgba(255, 99, 99, 0.8), rgba(155, 77, 255, 0.8));
|
|
}
|
|
|
|
.chat-item-title {
|
|
font-size: 14px;
|
|
font-weight: bolder;
|
|
display: block;
|
|
width: 200px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.chat-item-delete {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: -20px;
|
|
transition: all ease 0.3s;
|
|
opacity: 0;
|
|
}
|
|
|
|
.chat-item:hover>.chat-item-delete {
|
|
opacity: 0.5;
|
|
right: 10px;
|
|
}
|
|
|
|
.chat-item:hover>.chat-item-delete:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.chat-item-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
color: #AEB9CA;
|
|
font-size: 12px;
|
|
margin-top: 14px;
|
|
}
|
|
|
|
.chat-item-count {}
|
|
|
|
.chat-item-date {}
|
|
|
|
.sidebar-tail {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.sidebar-actions {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.sidebar-action:not(:last-child) {
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.chat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
.chat-body {
|
|
flex: 1;
|
|
overflow: auto;
|
|
padding: 20px;
|
|
padding-bottom: 120px;
|
|
transition: all ease 0.3s;
|
|
}
|
|
|
|
.chat-body-title {
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.chat-message {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.chat-message-user {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.chat-message-container {
|
|
max-width: var(--message-max-width);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
animation: slide-in ease 0.3s;
|
|
|
|
&:hover {
|
|
.chat-message-top-actions {
|
|
opacity: 1;
|
|
right: 10px;
|
|
pointer-events: all;
|
|
}
|
|
}
|
|
}
|
|
|
|
.chat-message-user>.chat-message-container {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.chat-message-avatar {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.chat-message-status {
|
|
font-size: 12px;
|
|
color: #aaa;
|
|
line-height: 1.5;
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.user-avtar {
|
|
height: 30px;
|
|
width: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: var(--border-in-light);
|
|
box-shadow: var(--card-shadow);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.chat-message-item {
|
|
box-sizing: border-box;
|
|
max-width: 100%;
|
|
margin-top: 28px;
|
|
border-radius: 4px 10px 10px 10px;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
line-height: 2;
|
|
user-select: text;
|
|
word-break: break-word;
|
|
position: relative;
|
|
background: linear-gradient(90.13deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%),
|
|
rgba(255, 255, 255, 0.05);
|
|
|
|
}
|
|
|
|
.chat-message-top-actions {
|
|
font-size: 12px;
|
|
position: absolute;
|
|
right: 20px;
|
|
top: -26px;
|
|
left: 100px;
|
|
transition: all ease 0.3s;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
|
|
.chat-message-top-action {
|
|
opacity: 0.5;
|
|
color: var(--black);
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.chat-message-user>.chat-message-container>.chat-message-item {
|
|
background: rgba(78, 91, 246, 0.55);
|
|
border-radius: 10px 4px 10px 10px;
|
|
border: none;
|
|
}
|
|
|
|
.chat-message-actions {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
width: 100%;
|
|
padding-top: 5px;
|
|
box-sizing: border-box;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.chat-message-action-date {
|
|
color: var(--text);
|
|
}
|
|
|
|
.chat-input-panel {
|
|
position: absolute;
|
|
bottom: 0px;
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
flex-direction: column;
|
|
background: rgba(4, 4, 21, 0.70);
|
|
backdrop-filter: blur(6px);
|
|
}
|
|
|
|
@mixin single-line {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.prompt-hints {
|
|
min-height: 20px;
|
|
width: 100%;
|
|
max-height: 50vh;
|
|
overflow: auto;
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
|
|
background-color: var(--white);
|
|
border: var(--border-in-light);
|
|
border-radius: 10px;
|
|
margin-bottom: 10px;
|
|
box-shadow: var(--shadow);
|
|
|
|
.prompt-hint {
|
|
color: var(--black);
|
|
padding: 6px 10px;
|
|
animation: slide-in ease 0.3s;
|
|
cursor: pointer;
|
|
transition: all ease 0.3s;
|
|
border: transparent 1px solid;
|
|
margin: 4px;
|
|
border-radius: 8px;
|
|
|
|
&:not(:last-child) {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.hint-title {
|
|
font-size: 12px;
|
|
font-weight: bolder;
|
|
|
|
@include single-line();
|
|
}
|
|
|
|
.hint-content {
|
|
font-size: 12px;
|
|
|
|
@include single-line();
|
|
}
|
|
|
|
&-selected,
|
|
&:hover {
|
|
border-color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.chat-input-panel-inner {
|
|
display: flex;
|
|
flex: 1;
|
|
align-items: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.chat-input {
|
|
box-sizing: border-box;
|
|
max-height: 222px;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
border: var(--border-in-light);
|
|
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.03);
|
|
background-color: var(--white);
|
|
color: var(--black) ;
|
|
padding: 16px 12px;
|
|
resize: none;
|
|
outline: none;
|
|
transition: all 0.5s ease;
|
|
word-break: break-all;
|
|
line-height: 1.5;
|
|
|
|
|
|
}
|
|
|
|
.chat-input::placeholder {
|
|
color: var(--text);
|
|
font-size: 14px;
|
|
vertical-align: middle
|
|
a;
|
|
}
|
|
|
|
|
|
// @media only screen and (max-width: 600px) {
|
|
// .chat-input {
|
|
// font-size: 14px;
|
|
// }
|
|
// }
|
|
|
|
.chat-input:focus {
|
|
background-clip: padding-box,
|
|
border-box;
|
|
background-origin: padding-box,
|
|
border-box;
|
|
background-image: linear-gradient(to right, var(--white), var(--white)),
|
|
linear-gradient(90deg, rgba(255, 99, 99, 0.8), rgba(155, 77, 255, 0.8));
|
|
box-shadow: 0 4px 0 2px rgba(var(--primary), .2);
|
|
// padding: inherit;
|
|
transition: all 0.5s ease;
|
|
}
|
|
|
|
.chat-input-send {
|
|
background-color: var(--primary);
|
|
color: white;
|
|
width: 78px;
|
|
height: 33px;
|
|
box-sizing: border-box;
|
|
border-radius: 8px;
|
|
position: absolute;
|
|
right: 30px;
|
|
bottom: 30px;
|
|
}
|
|
|
|
.export-content {
|
|
white-space: break-spaces;
|
|
}
|
|
|
|
.loading-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.addConversation {
|
|
box-sizing: border-box;
|
|
|
|
height: 52px;
|
|
width: 100%;
|
|
background: linear-gradient(0deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42));
|
|
// linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
|
|
box-shadow: 0px 0px 12px rgba(121, 159, 255, 0.44),
|
|
// 0px 0px 20px rgba(255, 255, 255, 0.36),
|
|
inset 0px 0px 5px rgba(255, 255, 255, 0.17);
|
|
backdrop-filter: blur(12px);
|
|
/* Note: backdrop-filter has minimal browser support */
|
|
|
|
|
|
box-shadow: 0px 0px 32px 0px rgba(102, 94, 177, 0.37) inset;
|
|
|
|
border-radius: 10px;
|
|
margin-bottom: 14px;
|
|
border: 2px solid rgba(255, 255, 255, 0.14);
|
|
font-size: 14px;
|
|
align-items: center;
|
|
display: flex;
|
|
// justify-content: center;
|
|
padding: 12px 10px;
|
|
transition: all 0.5s ease;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.addConversation:hover {
|
|
background-color: var(--hover-color);
|
|
}
|