Skip to content

Commit 8c6fd41

Browse files
committed
v14.6.1
1 parent 19a9df3 commit 8c6fd41

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

build/cjs/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/esm/index.mjs

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

demo/index.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,20 @@
158158
<div class="sidebar-block" style="width: 67%"></div>
159159
<div class="sidebar-block" style="width: 55%"></div>
160160

161-
<div style="padding: 20px 25px 25px 30px"></div>
161+
<div style="padding: 20px 25px 25px 30px">
162+
<gleap-checklist
163+
floating="true"
164+
sharedKey="project_X4"
165+
checklistid="67f0ccc770eef2e4332c5237"
166+
></gleap-checklist>
167+
</div>
162168
</aside>
163169

164170
<!-- Main content wireframe blocks -->
165171
<main class="main-placeholder" id="main1">
166172
<div style="max-width: 600px; margin: auto">
167173
<gleap-checklist
168-
sharedKey="project_X1"
174+
sharedKey="project_X4"
169175
checklistid="67f0ccc770eef2e4332c5237"
170176
></gleap-checklist>
171177
</div>

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": "14.6.0",
3+
"version": "14.6.1",
44
"main": "build/cjs/index.js",
55
"module": "build/esm/index.mjs",
66
"exports": {

published/14.6.1/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/GleapChecklist.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ export const registerGleapChecklist = () => {
833833
--radius-lg: 12px;
834834
--radius-full: 9999px;
835835
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
836-
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
836+
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
837837
--shadow-lg: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
838838
--animation-duration: 0.2s;
839839
--animation-timing: ease-in-out;
@@ -872,7 +872,7 @@ export const registerGleapChecklist = () => {
872872
.checklist-progress-bar-progress { height: 100%; background-color: var(--color-primary); transition: width var(--animation-duration) var(--animation-timing); border-radius: var(--radius-full); }
873873
.checklist-tasks { display: flex; flex-direction: column; gap: 12px; }
874874
.checklist-task { border: 1px solid var(--color-border); border-radius: var(--radius-lg); background-color: var(--color-bg); box-shadow: var(--shadow-sm); overflow: hidden; transition: background-color var(--animation-duration) var(--animation-timing), border-color var(--animation-duration) var(--animation-timing); }
875-
.checklist-task-header { display: flex; align-items: center; padding: 12px 16px; cursor: pointer; gap: 12px; position: relative; }
875+
.checklist-task-header { display: flex; align-items: center; padding: 15px 20px; cursor: pointer; gap: 12px; position: relative; }
876876
.checklist-task-header:hover { background: var(--color-gray-lighter); }
877877
.checklist-task-header:hover .checklist-task-header--chevron {
878878
color: var(--color-font-title);
@@ -892,7 +892,7 @@ export const registerGleapChecklist = () => {
892892
max-height: var(--task-body-active-height, 200px);
893893
opacity: 1;
894894
}
895-
.checklist-task-body-inner { padding: 4px 16px 20px 56px; font-size: 0.875rem; color: var(--color-font-text); line-height: 1.5; }
895+
.checklist-task-body-inner { padding: 4px 16px 20px 60px; font-size: 0.875rem; color: var(--color-font-text); line-height: 1.5; }
896896
.checklist-task-body-content { margin-bottom: 16px; }
897897
.checklist-task-body-content p:first-child { margin-top: 0; }
898898
.checklist-task-body-content p:last-child { margin-bottom: 0; }
@@ -929,7 +929,7 @@ export const registerGleapChecklist = () => {
929929
z-index: 1000;
930930
max-height: 90vh;
931931
display: none;
932-
padding: 10px;
932+
padding: 0px;
933933
min-width: min(380px, 90vw);
934934
background-color: var(--color-bg);
935935
border-radius: var(--radius-lg);
@@ -968,7 +968,7 @@ export const registerGleapChecklist = () => {
968968
cursor: default !important;
969969
}
970970
.checklist-floating-header {
971-
padding: 12px;
971+
padding: 20px;
972972
padding-bottom: 16px;
973973
border-bottom: 1px solid var(--color-border);
974974
cursor: pointer;

0 commit comments

Comments
 (0)