Skip to content

Commit

Permalink
Merge pull request #18 from GleapSDK/capturewidget
Browse files Browse the repository at this point in the history
Capturewidget
  • Loading branch information
boehlerlukas authored Jan 27, 2022
2 parents 40a00e0 + 28c4127 commit 359bbb0
Show file tree
Hide file tree
Showing 148 changed files with 3,131 additions and 794 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/index.min.css

Large diffs are not rendered by default.

Binary file modified demo/.DS_Store
Binary file not shown.
46 changes: 26 additions & 20 deletions demo/appwidget.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
border: none;
}

.bb-feedback-dialog-backdrop {
display: none !important;
}
Expand All @@ -13,7 +20,8 @@
.bb-feedback-dialog {
position: initial;
animation-name: none;
box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
width: calc(100% - 20px);
}

.bb-feedback-dialog-header-close {
Expand Down Expand Up @@ -45,7 +53,7 @@
}

.bb-feedback-dialog-header-next span {
font-family: 'Inter', sans-serif;
font-family: "Inter", sans-serif;
font-weight: 600;
font-size: 16px;
color: #192027;
Expand Down Expand Up @@ -92,6 +100,7 @@

.bb-drawing-tools {
display: flex;
align-items: center;
}

.bb-drawing-tool-item {
Expand Down Expand Up @@ -119,35 +128,26 @@
cursor: pointer;
}

.bb-drawing-tool-action svg {
width: 32px;
height: 32px;
object-fit: contain;
}

.bb-drawing-tool-action--disabled {
opacity: 0.2;
cursor: not-allowed;
}

.bb-drawing-tool-spacer {
background-color: #ddd;
width: 1px;
height: 44px;
height: 32px;
margin: 0px 10px;
}

.bb-drawing-tool-item--active {
background-color: #398cfe;
}

.bb-drawing-tool-item svg,
.bb-drawing-tool-item svg g {
fill: #192027;
}

.bb-drawing-tool-item--active svg,
.bb-drawing-tool-item--active svg g {
fill: #fff;
}

.bb-drawing-tool-item svg {
width: 100%;
height: 100%;
width: 32px;
height: 32px;
object-fit: contain;
}

Expand Down Expand Up @@ -196,3 +196,9 @@
width: 100%;
}
}

.bb-anim-fadein {
animation-duration: 0s !important;
animation-fill-mode: both !important;
animation-name: none !important;
}
2 changes: 1 addition & 1 deletion demo/appwidget.html

Large diffs are not rendered by default.

Loading

0 comments on commit 359bbb0

Please sign in to comment.