|
18 | 18 | width: 40px; |
19 | 19 | padding: 4px; |
20 | 20 | border-radius: 20px; |
21 | | - color: rgba(255, 255, 255, 0.5); |
22 | | - background: rgba(255, 255, 255, 0.05); |
23 | | - box-shadow: none; |
| 21 | + color: var(--el-text-color-light); |
| 22 | + background: var(--el-nav-bg-color); |
| 23 | + border: 1px solid rgba(255, 255, 255, 0.22); |
| 24 | + box-shadow: |
| 25 | + 0 8px 24px rgba(0, 0, 0, 0.32), |
| 26 | + 0 0 0 1px rgba(0, 0, 0, 0.22), |
| 27 | + 0 1px 0 rgba(255, 255, 255, 0.16) inset; |
24 | 28 | pointer-events: auto; |
25 | 29 | user-select: none; |
26 | 30 | z-index: 1; |
|
36 | 40 | padding: 0; |
37 | 41 | border: 0; |
38 | 42 | border-radius: 12.5px; |
39 | | - color: rgba(255, 255, 255, 0.5); |
| 43 | + color: rgba(255, 255, 255, 0.72); |
40 | 44 | background: transparent; |
41 | 45 | cursor: pointer; |
42 | 46 | transition: |
|
46 | 50 | &:hover, |
47 | 51 | &:focus-visible { |
48 | 52 | color: #fff; |
49 | | - background: rgba(255, 255, 255, 0.08); |
| 53 | + background: rgba(255, 255, 255, 0.12); |
50 | 54 | } |
51 | 55 | } |
52 | 56 |
|
|
75 | 79 | .chat-img { |
76 | 80 | width: 16px; |
77 | 81 | height: 16px; |
78 | | - opacity: 0.5; |
| 82 | + opacity: 1; |
79 | 83 | transition: opacity 0.16s ease; |
80 | 84 | } |
81 | 85 |
|
|
85 | 89 | } |
86 | 90 | } |
87 | 91 |
|
| 92 | +.chat-ai-button { |
| 93 | + background: var(--el-dropdown-selected-bg-color); |
| 94 | + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24); |
| 95 | + |
| 96 | + &:hover, |
| 97 | + &:focus-visible { |
| 98 | + background: var(--el-dropdown-active-bg-color); |
| 99 | + } |
| 100 | +} |
| 101 | + |
88 | 102 | .chat-panel { |
89 | 103 | position: fixed; |
90 | 104 | right: 12px; |
|
0 commit comments