Skip to content

Commit 4c2f38a

Browse files
committed
v7.0.0-beta.4
1 parent 7bf965f commit 4c2f38a

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gleap",
3-
"version": "7.0.0-beta.3",
3+
"version": "7.0.0-beta.4",
44
"main": "build/index.js",
55
"scripts": {
66
"start": "webpack serve",

published/7.0.0-beta.4/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/latest/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/GleapFeedbackButtonManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export default class GleapFeedbackButtonManager {
112112
}
113113

114114
if (GleapFrameManager.getInstance().isOpened()) {
115-
this.feedbackButton.classList.add("bb-feedback-button--sending");
115+
this.feedbackButton.classList.add("bb-feedback-button--open");
116116
}
117117
}
118118
}

src/UI.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ export const injectStyledCSS = (
272272
right: 20px;
273273
}
274274
275-
.bb-feedback-button--sending .bb-feedback-button-classic {
275+
.bb-feedback-button--open .bb-feedback-button-classic {
276276
animation-duration: 0.2s;
277277
animation-fill-mode: both;
278278
animation-name: bbFadeOutRight;
@@ -305,28 +305,28 @@ export const injectStyledCSS = (
305305
animation-name: bbZoomOut;
306306
}
307307
308-
.bb-feedback-button--sending .bb-logo-arrowdown {
308+
.bb-feedback-button--open .bb-logo-arrowdown {
309309
animation-name: bbZoomIn;
310310
}
311311
312-
.bb-feedback-button--sending .bb-logo-logo {
312+
.bb-feedback-button--open .bb-logo-logo {
313313
animation-name: bbZoomOut;
314314
}
315315
316316
.bb-feedback-button-icon:hover {
317317
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25), 0px 0px 20px rgba(0, 0, 0, 0.2);
318318
}
319319
320-
.bb-feedback-button--bottomleft.bb-feedback-button--sending {
320+
.bb-feedback-button--bottomleft.bb-feedback-button--open {
321321
padding-left: 0px;
322322
padding-right: 5px;
323323
}
324324
325-
.bb-feedback-button--sending .bb-feedback-button-text {
325+
.bb-feedback-button--open .bb-feedback-button-text {
326326
animation-name: bbFadeOutDown;
327327
}
328328
329-
.bb-feedback-button--sending .bb-feedback-button-icon {
329+
.bb-feedback-button--open .bb-feedback-button-icon {
330330
display: flex;
331331
}
332332

0 commit comments

Comments
 (0)