镜像自地址
https://github.com/binary-husky/gpt_academic.git
已同步 2025-12-06 06:26:47 +00:00
272 行
5.6 KiB
CSS
272 行
5.6 KiB
CSS
#plugin_arg_menu {
|
|
transform: translate(-50%, -50%);
|
|
border: dashed;
|
|
}
|
|
|
|
|
|
/* hide remove all button */
|
|
.remove-all.svelte-aqlk7e.svelte-aqlk7e.svelte-aqlk7e {
|
|
visibility: hidden;
|
|
}
|
|
|
|
/* hide selector border */
|
|
#input-plugin-group .wrap.svelte-aqlk7e.svelte-aqlk7e.svelte-aqlk7e {
|
|
border: 0px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
#input-plugin-group .secondary-wrap.svelte-aqlk7e.svelte-aqlk7e.svelte-aqlk7e {
|
|
border: none;
|
|
min-width: 0;
|
|
}
|
|
|
|
/* hide selector label */
|
|
#input-plugin-group .svelte-1gfkn6j {
|
|
visibility: hidden;
|
|
}
|
|
|
|
|
|
/* height of the upload box */
|
|
.wrap.svelte-xwlu1w {
|
|
min-height: var(--size-32);
|
|
}
|
|
|
|
/* status bar height */
|
|
.min.svelte-1yrv54 {
|
|
min-height: var(--size-12);
|
|
}
|
|
|
|
/* copy btn */
|
|
.message-btn-row {
|
|
width: 19px;
|
|
height: 19px;
|
|
position: absolute;
|
|
left: calc(100% + 3px);
|
|
top: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
/* .message-btn-row-leading, .message-btn-row-trailing {
|
|
display: inline-flex;
|
|
gap: 4px;
|
|
} */
|
|
.message-btn-row button {
|
|
font-size: 18px;
|
|
align-self: center;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
white-space: nowrap;
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
gap: 4px;
|
|
padding-block: 2px !important;
|
|
}
|
|
|
|
|
|
/* Scrollbar Width */
|
|
::-webkit-scrollbar {
|
|
height: 12px;
|
|
width: 12px;
|
|
}
|
|
|
|
/* Scrollbar Track */
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
/* Scrollbar Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: #888;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
/* Scrollbar Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
|
|
/* input btns: clear, reset, stop */
|
|
#input-panel button {
|
|
min-width: min(80px, 100%);
|
|
}
|
|
|
|
/* input btns: clear, reset, stop */
|
|
#input-panel2 button {
|
|
min-width: min(80px, 100%);
|
|
}
|
|
|
|
|
|
#cbs {
|
|
background-color: var(--block-background-fill) !important;
|
|
}
|
|
|
|
#cbsc {
|
|
background-color: var(--block-background-fill) !important;
|
|
}
|
|
|
|
#interact-panel .form {
|
|
border: hidden
|
|
}
|
|
|
|
.drag-area {
|
|
border: solid;
|
|
border-width: thin;
|
|
user-select: none;
|
|
padding-left: 2%;
|
|
text-align: center;
|
|
}
|
|
|
|
.floating-component #input-panel2 {
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
border: solid;
|
|
border-width: thin;
|
|
border-top-width: 0;
|
|
}
|
|
|
|
.floating-component #plugin_arg_panel {
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
border: solid;
|
|
border-width: thin;
|
|
border-top-width: 0;
|
|
}
|
|
|
|
.floating-component #edit-panel {
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
border: solid;
|
|
border-width: thin;
|
|
border-top-width: 0;
|
|
}
|
|
|
|
|
|
.welcome-card-container {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
position: absolute;
|
|
width: inherit;
|
|
padding: 50px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
transition: opacity 1s ease-in-out;
|
|
opacity: 0;
|
|
}
|
|
.welcome-card-container.show {
|
|
opacity: 1;
|
|
}
|
|
.welcome-card-container.hide {
|
|
opacity: 0;
|
|
}
|
|
.welcome-card {
|
|
border-radius: 10px;
|
|
box-shadow: 0px 0px 6px 3px #e5e7eb6b;
|
|
padding: 15px;
|
|
margin: 10px;
|
|
flex: 1 0 calc(30% - 5px);
|
|
transition: opacity 0.1s ease-in-out;
|
|
opacity: 1;
|
|
}
|
|
.welcome-card.show {
|
|
opacity: 1;
|
|
}
|
|
.welcome-card.hide {
|
|
opacity: 0;
|
|
}
|
|
.welcome-title {
|
|
font-size: 40px;
|
|
padding: 20px;
|
|
margin: 10px;
|
|
flex: 0 0 calc(90%);
|
|
}
|
|
.welcome-card-title {
|
|
font-size: 20px;
|
|
margin: 2px;
|
|
flex: 0 0 calc(95%);
|
|
padding-bottom: 8px;
|
|
padding-top: 8px;
|
|
padding-right: 8px;
|
|
padding-left: 8px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.welcome-svg {
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.welcome-title-text {
|
|
text-wrap: nowrap;
|
|
}
|
|
.welcome-content {
|
|
text-wrap: balance;
|
|
height: 55px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
#gpt-submit-row {
|
|
display: flex;
|
|
gap: 0 !important;
|
|
border-radius: var(--button-large-radius);
|
|
border: var(--button-border-width) solid var(--button-primary-border-color);
|
|
/* background: var(--button-primary-background-fill); */
|
|
background: var(--button-primary-background-fill-hover);
|
|
color: var(--button-primary-text-color);
|
|
box-shadow: var(--button-shadow);
|
|
transition: var(--button-transition);
|
|
display: flex;
|
|
}
|
|
#gpt-submit-row:hover {
|
|
border-color: var(--button-primary-border-color-hover);
|
|
/* background: var(--button-primary-background-fill-hover); */
|
|
/* color: var(--button-primary-text-color-hover); */
|
|
}
|
|
#gpt-submit-row button#elem_submit_visible {
|
|
border-top-right-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
box-shadow: none !important;
|
|
flex-grow: 1;
|
|
}
|
|
#gpt-submit-row #gpt-submit-dropdown {
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
border-left: 0.5px solid #FFFFFF88 !important;
|
|
display: flex;
|
|
overflow: unset !important;
|
|
max-width: 40px !important;
|
|
min-width: 40px !important;
|
|
}
|
|
#gpt-submit-row #gpt-submit-dropdown input {
|
|
pointer-events: none;
|
|
opacity: 0; /* 隐藏输入框 */
|
|
width: 0;
|
|
margin-inline: 0;
|
|
cursor: pointer;
|
|
}
|
|
#gpt-submit-row #gpt-submit-dropdown label {
|
|
display: flex;
|
|
width: 0;
|
|
}
|
|
#gpt-submit-row #gpt-submit-dropdown label div.wrap {
|
|
background: none;
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
#gpt-submit-row #gpt-submit-dropdown label div.wrap div.wrap-inner {
|
|
background: none;
|
|
padding-inline: 0;
|
|
height: 100%;
|
|
}
|
|
#gpt-submit-row #gpt-submit-dropdown svg.dropdown-arrow {
|
|
transform: scale(2) translate(4.5px, -0.3px);
|
|
}
|
|
#gpt-submit-row #gpt-submit-dropdown > *:hover {
|
|
cursor: context-menu;
|
|
} |