细节处修改

This commit is contained in:
lqins
2024-12-22 12:37:32 +08:00
parent 0c1f650e9c
commit ab903e3cc1
14 changed files with 111 additions and 65 deletions

View File

@@ -8,6 +8,9 @@
::v-deep (.el-message-box__message){
font-size: 18px !important
}
.newChat{
margin-bottom: 10px
}
// left side
.el-container{
height: 100%;
@@ -115,7 +118,7 @@
background-color :var(--theme-bg);
box-shadow: 0px 3px 9px rgba(112,144,176,0.12);
border: 1px solid var(--border-active);
border: 1px solid var(--shadow-color);
}
}
}
@@ -219,6 +222,8 @@
.chat-box {
overflow-y: auto;
//border-bottom: 1px solid #4f4f4f
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IEEdge */
//
--content-font-size: 16px;
@@ -234,6 +239,9 @@
}
::-webkit-scrollbar {
display: none; /* Webkit */
}
}
.input-box {

View File

@@ -23,7 +23,8 @@
--el-input-focus-border-color: #b0a0f8;
--little-btn-bg:#e9d3f6;
--gray-btn-bg:#ededf591;
--a-link-color: #3561ff
// --a-link-color: #3561ff
--a-link-color: #6e8eff
--shadow-color:rgba(223,71,255,0.6)
--sm-btn-bg:#6052ed;
--theme-text-tertiary: #595959;

View File

@@ -23,4 +23,15 @@
::-webkit-scrollbar-thumb:hover {
background-color: #666666;
}
overflow: auto; /* */
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IEEdge */
::-webkit-scrollbar {
display: none; /* Webkit */
}
&.showScrollbar {
::-webkit-scrollbar {
display: none; /* Webkit */
}
}
}

View File

@@ -379,7 +379,7 @@
display block
cursor pointer
background-color #4E5058
color var(--text-theme-color)
color #fff
&:hover {
background-color #6D6F78

View File

@@ -259,7 +259,7 @@
background none
padding 6px
transition background 0.6s ease 0s
color #726E6C
color #919191
&:hover {
// background #5f5958

View File

@@ -164,6 +164,8 @@
&:hover {
// box-shadow: 0 0 10px rgba(71, 255, 241, 0.6); /* */
transform: translateY(-10px); /* 10 */
box-shadow: 0 0 10px var(--shadow-color);
background-color: #30323c;
}
}
}

View File

@@ -1,6 +1,6 @@
.el-overlay-dialog {
.el-dialog {
background-color #1a1b1e
// background-color #1a1b1e
.el-dialog__header {
.el-dialog__title {
@@ -33,14 +33,15 @@
}
.task-info {
background-color #25262b
// background-color #25262b
padding 1rem 1.5rem
.info-line {
width 100%
.prompt {
background-color #35363b
// background-color #35363b
padding 10px
color #999999
overflow auto
@@ -64,16 +65,16 @@
label {
display flex
width 100px
color #a5a5a5
color :var(--el-text-color-primary)
}
.item-value {
display flex
width 100%
background-color #35363b
// background-color #35363b
padding 2px 5px
border-radius 5px
color #F5F5F5
color: var(--text-theme-color);
}
}

View File

@@ -3,7 +3,14 @@
height 100%
// background-color #0E0808
overflow auto
.item-group{
scrollbar-width: auto !important; /* Firefox */
-ms-overflow-style: auto !important; /* IEEdge */
::-webkit-scrollbar {
display: block !important;
}
}
.left-bar {
max-width 340px
min-width 340px
@@ -147,8 +154,14 @@
position relative
overflow-x auto
overflow-y hidden
scrollbar-width: auto !important; /* Firefox */
-ms-overflow-style: auto !important; /* IEEdge */
width 100%
::-webkit-scrollbar {
display: block !important;
}
.inner {
display flex
flex-flow row
@@ -256,7 +269,7 @@
font-weight 700
a {
color vae( --a-link-color)
color var( --a-link-color)
&:hover {
text-decoration underline
}
@@ -309,7 +322,7 @@
background none
padding 6px
transition background 0.6s ease 0s
color #726E6C
color #919191
&:hover {
// background #5f5958

View File

@@ -21,7 +21,8 @@
--btnColor: linear-gradient(88deg, #af61f0 1.44%, #5b62ce);
--border-active:rgba(255, 255, 255, 0.1);
// --card-bg: rgba(17, 28, 68, 1);
--card-bg: #1f243f;
// --card-bg: #1f243f;
--card-bg:#252d58;
--card-bg-table: rgba(17, 28, 68, 1);
--theme-bg:rgb(13, 20, 53);
--theme-bg-all:rgb(13, 20, 53);
@@ -34,7 +35,8 @@
--el-bg-color-overlay: rgba(17, 28, 68, 1);
--el-border-color-light: rgba(255, 255, 255, 0.2);
--line-box:rgba(255, 255, 255, 0.1);
--chat-bg:#141a36;
// --chat-bg:#141a36;
--chat-bg:#1f243f
--el-bg-color:#141a36;
--el-fill-color-blank: rgba(17, 28, 68, 1);
--el-fill-color-light: rgba(86, 86, 95, .2);