Skip to content

Commit 359bbb0

Browse files
authored
Merge pull request #18 from GleapSDK/capturewidget
Capturewidget
2 parents 40a00e0 + 28c4127 commit 359bbb0

File tree

148 files changed

+3131
-794
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+3131
-794
lines changed

.DS_Store

-2 KB
Binary file not shown.

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.

build/index.min.css

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

demo/.DS_Store

0 Bytes
Binary file not shown.

demo/appwidget.css

Lines changed: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
* {
2+
box-sizing: border-box;
3+
margin: 0px;
4+
padding: 0px;
5+
border: none;
6+
}
7+
18
.bb-feedback-dialog-backdrop {
29
display: none !important;
310
}
@@ -13,7 +20,8 @@
1320
.bb-feedback-dialog {
1421
position: initial;
1522
animation-name: none;
16-
box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
23+
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
24+
width: calc(100% - 20px);
1725
}
1826

1927
.bb-feedback-dialog-header-close {
@@ -45,7 +53,7 @@
4553
}
4654

4755
.bb-feedback-dialog-header-next span {
48-
font-family: 'Inter', sans-serif;
56+
font-family: "Inter", sans-serif;
4957
font-weight: 600;
5058
font-size: 16px;
5159
color: #192027;
@@ -92,6 +100,7 @@
92100

93101
.bb-drawing-tools {
94102
display: flex;
103+
align-items: center;
95104
}
96105

97106
.bb-drawing-tool-item {
@@ -119,35 +128,26 @@
119128
cursor: pointer;
120129
}
121130

131+
.bb-drawing-tool-action svg {
132+
width: 32px;
133+
height: 32px;
134+
object-fit: contain;
135+
}
136+
122137
.bb-drawing-tool-action--disabled {
123138
opacity: 0.2;
124139
cursor: not-allowed;
125140
}
126141

127142
.bb-drawing-tool-spacer {
128-
background-color: #ddd;
129143
width: 1px;
130-
height: 44px;
144+
height: 32px;
131145
margin: 0px 10px;
132146
}
133147

134-
.bb-drawing-tool-item--active {
135-
background-color: #398cfe;
136-
}
137-
138-
.bb-drawing-tool-item svg,
139-
.bb-drawing-tool-item svg g {
140-
fill: #192027;
141-
}
142-
143-
.bb-drawing-tool-item--active svg,
144-
.bb-drawing-tool-item--active svg g {
145-
fill: #fff;
146-
}
147-
148148
.bb-drawing-tool-item svg {
149-
width: 100%;
150-
height: 100%;
149+
width: 32px;
150+
height: 32px;
151151
object-fit: contain;
152152
}
153153

@@ -196,3 +196,9 @@
196196
width: 100%;
197197
}
198198
}
199+
200+
.bb-anim-fadein {
201+
animation-duration: 0s !important;
202+
animation-fill-mode: both !important;
203+
animation-name: none !important;
204+
}

demo/appwidget.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)