Skip to content

Commit 44bc4e2

Browse files
committed
Merge branch 'fix-spin-animation' into 'develop'
Removed duplicated spin animation See merge request baserow/baserow!3778
2 parents 04f59bc + 96b00fb commit 44bc4e2

File tree

2 files changed

+25
-27
lines changed

2 files changed

+25
-27
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"type": "bug",
3+
"message": "Removed duplicated spin animation causing loading icon to look slower than intended.",
4+
"domain": "database",
5+
"issue_number": null,
6+
"bullet_points": [],
7+
"created_at": "2025-10-07"
8+
}

enterprise/web-frontend/modules/baserow_enterprise/assets/scss/components/assistant.scss

Lines changed: 17 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -185,25 +185,25 @@
185185
.assistant__input-textarea {
186186
@extend %scrollbar-thin;
187187

188-
flex: 1;
189-
border: none;
190-
resize: none;
191-
background: transparent;
192-
font-size: 13px;
193-
line-height: 20px;
194-
max-height: 120px;
188+
flex: 1;
189+
border: none;
190+
resize: none;
191+
background: transparent;
192+
font-size: 13px;
193+
line-height: 20px;
194+
max-height: 120px;
195+
outline: none;
196+
box-shadow: none;
197+
padding: 8px 50px 0 16px;
198+
199+
&:focus {
195200
outline: none;
196201
box-shadow: none;
197-
padding: 8px 50px 0 16px;
198-
199-
&:focus {
200-
outline: none;
201-
box-shadow: none;
202-
}
202+
}
203203

204-
&::placeholder {
205-
color: $palette-neutral-600;
206-
}
204+
&::placeholder {
205+
color: $palette-neutral-600;
206+
}
207207
}
208208

209209
.assistant__context-badge {
@@ -247,7 +247,7 @@
247247
}
248248

249249
&--is-running i {
250-
animation: spin 1.2s linear infinite;
250+
animation: spin 2.5s linear infinite;
251251
}
252252

253253
&:hover:not(.assistant__send-button--disabled) {
@@ -269,16 +269,6 @@
269269
}
270270
}
271271

272-
@keyframes spin {
273-
from {
274-
transform: rotate(0deg);
275-
}
276-
277-
to {
278-
transform: rotate(360deg);
279-
}
280-
}
281-
282272
// Message list
283273

284274
.assistant__messages-list {

0 commit comments

Comments
 (0)