-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
108 lines (98 loc) · 2.07 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#ai-feedback-panel {
position: fixed;
right: 0;
top: 0;
width: 400px;
height: 100vh;
background: white;
border-left: 1px solid #e1e4e8;
box-shadow: -2px 0 8px rgba(0,0,0,0.1);
z-index: 9999;
overflow-y: auto;
padding: 20px;
transition: transform 0.3s ease;
}
#ai-feedback-panel button {
position: absolute;
right: 10px;
top: 10px;
width: 30px;
height: 30px;
border: none;
border-radius: 50%;
background: #f6f8fa;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
color: #57606a;
transition: background-color 0.2s;
padding: 0;
line-height: 1;
}
#ai-feedback-panel button:hover {
background-color: #e1e4e8;
}
#ai-feedback-icon {
position: fixed;
right: 20px;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
background: white;
border: 1px solid #d0d7de;
border-radius: 50%;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
cursor: pointer;
z-index: 10000;
display: none;
justify-content: center;
align-items: center;
font-size: 20px;
}
#ai-feedback-icon:hover {
transform: translateY(-30%) scale(1.1);
}
#ai-feedback-content {
margin-top: 40px;
}
.file-section {
margin-bottom: 30px;
background-color: #f6f8fa;
padding: 15px;
border-radius: 6px;
}
.file-name {
margin: 0 0 10px 0;
padding-bottom: 8px;
border-bottom: 1px solid #e1e4e8;
font-size: 16px;
font-weight: 600;
color: #24292e;
}
.feedback-content {
font-size: 14px;
line-height: 1.5;
color: #24292e;
}
.error-message {
padding: 16px;
margin: 16px 0;
color: #cf222e;
background-color: #ffebe9;
border: 1px solid #ff8182;
border-radius: 6px;
font-size: 14px;
}
.loading-message {
padding: 16px;
margin: 16px 0;
color: #0969da;
background-color: #f6f8fa;
border: 1px solid #d0d7de;
border-radius: 6px;
font-size: 14px;
text-align: center;
}