wuffle 0.49.0 → 0.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/apps/board-api-routes/board-api-filters.js +4 -2
- package/lib/links.js +6 -2
- package/lib/store.js +14 -5
- package/lib/util/links.js +19 -11
- package/package.json +2 -2
- package/public/bundle.css +18 -1
- package/public/bundle.js +1 -1
- package/public/bundle.js.map +1 -1
|
@@ -116,12 +116,14 @@ module.exports.filterLabel = filterLabel;
|
|
|
116
116
|
function filterLink(link) {
|
|
117
117
|
const {
|
|
118
118
|
type,
|
|
119
|
-
target
|
|
119
|
+
target,
|
|
120
|
+
ref
|
|
120
121
|
} = link;
|
|
121
122
|
|
|
122
123
|
return {
|
|
123
124
|
type,
|
|
124
|
-
target: filterIssueOrPull(target)
|
|
125
|
+
target: filterIssueOrPull(target),
|
|
126
|
+
...(ref ? { ref } : { })
|
|
125
127
|
};
|
|
126
128
|
}
|
|
127
129
|
|
package/lib/links.js
CHANGED
|
@@ -37,14 +37,16 @@ class Links {
|
|
|
37
37
|
* @param {string} sourceId
|
|
38
38
|
* @param {string} targetId
|
|
39
39
|
* @param {string} linkType
|
|
40
|
+
* @param {Record<string,any>} linkAttrs
|
|
40
41
|
*
|
|
41
42
|
* @return {Link}
|
|
42
43
|
*/
|
|
43
|
-
createLink(sourceId, targetId, linkType) {
|
|
44
|
+
createLink(sourceId, targetId, linkType, linkAttrs) {
|
|
44
45
|
|
|
45
46
|
const key = `${targetId}-${linkType}`;
|
|
46
47
|
|
|
47
48
|
const link = {
|
|
49
|
+
...linkAttrs,
|
|
48
50
|
key,
|
|
49
51
|
sourceId,
|
|
50
52
|
targetId,
|
|
@@ -64,7 +66,8 @@ class Links {
|
|
|
64
66
|
const {
|
|
65
67
|
sourceId,
|
|
66
68
|
targetId,
|
|
67
|
-
type
|
|
69
|
+
type,
|
|
70
|
+
...linkAttrs
|
|
68
71
|
} = link;
|
|
69
72
|
|
|
70
73
|
if (!LinkTypes[type]) {
|
|
@@ -76,6 +79,7 @@ class Links {
|
|
|
76
79
|
const key = `${targetId}-${type}`;
|
|
77
80
|
|
|
78
81
|
links[key] = {
|
|
82
|
+
...linkAttrs,
|
|
79
83
|
key,
|
|
80
84
|
sourceId,
|
|
81
85
|
targetId,
|
package/lib/store.js
CHANGED
|
@@ -459,7 +459,7 @@ class Store {
|
|
|
459
459
|
|
|
460
460
|
createLinks(context, issue) {
|
|
461
461
|
|
|
462
|
-
const { id } = issue;
|
|
462
|
+
const { id, number: issueNumber } = issue;
|
|
463
463
|
|
|
464
464
|
const repoAndOwner = {
|
|
465
465
|
repo: issue.repository.name,
|
|
@@ -478,9 +478,19 @@ class Store {
|
|
|
478
478
|
owner,
|
|
479
479
|
repo,
|
|
480
480
|
number,
|
|
481
|
-
type: linkType
|
|
481
|
+
type: linkType,
|
|
482
|
+
...linkAttrs
|
|
482
483
|
} = link;
|
|
483
484
|
|
|
485
|
+
// skip self links
|
|
486
|
+
if (
|
|
487
|
+
owner === repoAndOwner.owner &&
|
|
488
|
+
repo === repoAndOwner.repo &&
|
|
489
|
+
number === issueNumber
|
|
490
|
+
) {
|
|
491
|
+
return map;
|
|
492
|
+
}
|
|
493
|
+
|
|
484
494
|
const linkedKey = `${owner}/${repo}#${number}`;
|
|
485
495
|
|
|
486
496
|
const linkedIssue = context.getIssueByKey(linkedKey);
|
|
@@ -489,7 +499,7 @@ class Store {
|
|
|
489
499
|
|
|
490
500
|
const { id: targetId } = linkedIssue;
|
|
491
501
|
|
|
492
|
-
const link = this.links.createLink(id, targetId, linkType);
|
|
502
|
+
const link = this.links.createLink(id, targetId, linkType, linkAttrs);
|
|
493
503
|
|
|
494
504
|
map[link.key] = link;
|
|
495
505
|
}
|
|
@@ -592,12 +602,11 @@ class Store {
|
|
|
592
602
|
linked = this.linkedCache[id] = Object.values(this.links.getBySource(id)).map(link => {
|
|
593
603
|
|
|
594
604
|
const {
|
|
595
|
-
type,
|
|
596
605
|
targetId
|
|
597
606
|
} = link;
|
|
598
607
|
|
|
599
608
|
return {
|
|
600
|
-
|
|
609
|
+
...link,
|
|
601
610
|
target: this.getIssueById(targetId)
|
|
602
611
|
};
|
|
603
612
|
}).filter(link => link.target);
|
package/lib/util/links.js
CHANGED
|
@@ -69,7 +69,8 @@ function findLinks(issue, types) {
|
|
|
69
69
|
/*
|
|
70
70
|
* match = [
|
|
71
71
|
* short_org, short_repo, short_number,
|
|
72
|
-
* long_org, long_repo, long_number
|
|
72
|
+
* long_org, long_repo, long_number,
|
|
73
|
+
* ref
|
|
73
74
|
* ]
|
|
74
75
|
*/
|
|
75
76
|
|
|
@@ -84,7 +85,8 @@ function findLinks(issue, types) {
|
|
|
84
85
|
/*
|
|
85
86
|
* continuationMatch = [
|
|
86
87
|
* short_org, short_repo, short_number,
|
|
87
|
-
* long_org, long_repo, long_number
|
|
88
|
+
* long_org, long_repo, long_number,
|
|
89
|
+
* ref
|
|
88
90
|
* ]
|
|
89
91
|
*/
|
|
90
92
|
|
|
@@ -110,9 +112,7 @@ function findLinks(issue, types) {
|
|
|
110
112
|
const issuePattern = new RegExp(`${issuePart}`, 'ig');
|
|
111
113
|
|
|
112
114
|
while ((issueMatch = issuePattern.exec(text))) {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
issueMatches.push([ ref ? LINKED_TO : PARENT_OF, issueMatch.slice(1) ]);
|
|
115
|
+
issueMatches.push([ PARENT_OF, issueMatch.slice(1) ]);
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
|
|
@@ -124,14 +124,22 @@ function findLinks(issue, types) {
|
|
|
124
124
|
const repo = issueParts[1] || issueParts[4];
|
|
125
125
|
const number = parseInt(issueParts[2] || issueParts[5], 10);
|
|
126
126
|
|
|
127
|
-
const
|
|
127
|
+
const ref = issueParts[6];
|
|
128
|
+
|
|
129
|
+
const link = {
|
|
128
130
|
type,
|
|
129
131
|
number,
|
|
130
|
-
owner
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
132
|
+
...(owner
|
|
133
|
+
? {
|
|
134
|
+
owner,
|
|
135
|
+
repo
|
|
136
|
+
}
|
|
137
|
+
: { }
|
|
138
|
+
),
|
|
139
|
+
...(ref
|
|
140
|
+
? { ref }
|
|
141
|
+
: { }
|
|
142
|
+
)
|
|
135
143
|
};
|
|
136
144
|
|
|
137
145
|
links.push(link);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wuffle",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"description": "A multi-repository task board for GitHub issues",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Nico Rehwaldt",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"index.js",
|
|
93
93
|
"wuffle.config.example.js"
|
|
94
94
|
],
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "ee6c456c52af003540a34e5bc16a94c362f32f5f"
|
|
96
96
|
}
|
package/public/bundle.css
CHANGED
|
@@ -1 +1,18 @@
|
|
|
1
|
-
.taskboard.svelte-xh6bpr.svelte-xh6bpr{height:100vh;display:flex;flex-direction:column}@media all and (max-width: 600px){.board-filter{width:100% !important}.navbar .board-filter-parent{flex:1 !important}.navbar .logo{width:32px;height:32px}}.taskboard-error.svelte-xh6bpr.svelte-xh6bpr{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);text-align:center}.taskboard-error.svelte-xh6bpr p.svelte-xh6bpr{font-size:1.3em;margin-top:1.7rem;margin-bottom:3rem;color:#495057}.taskboard-board.svelte-xh6bpr.svelte-xh6bpr{display:flex;flex:1;width:100%;padding:3px;padding-top:0;overflow-x:auto}.taskboard-column.svelte-xh6bpr.svelte-xh6bpr{display:flex;flex-direction:column;min-width:250px;flex:1;border-radius:2px;margin:3px;background:#ebecf0}.taskboard-column.collapsed.svelte-xh6bpr.svelte-xh6bpr{line-height:2em;min-width:42px;flex:0}.taskboard-column-items.svelte-xh6bpr.svelte-xh6bpr{flex:1;overflow-y:auto;padding:3px 10px 10px}.taskboard-column-header.svelte-xh6bpr.svelte-xh6bpr{text-align:center;line-height:2.4em;font-size:1.25em;color:inherit}.taskboard-column-collapse.svelte-xh6bpr.svelte-xh6bpr{color:#adb5bd;float:left;padding:0 12px;line-height:2.4em;margin-right:-20px;font-size:1.2rem}.taskboard-column-collapse.svelte-xh6bpr.svelte-xh6bpr:hover{color:#495057}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-collapse.svelte-xh6bpr{float:unset;padding:0 12px;margin:0}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-header.svelte-xh6bpr{display:flex;flex-direction:column;flex:1}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-name.svelte-xh6bpr,.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-issue-count.svelte-xh6bpr{transform:rotate(-180deg);writing-mode:vertical-rl}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-name.svelte-xh6bpr{order:2}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-issue-count.svelte-xh6bpr{padding:0.5em 0;order:0}.taskboard-column-name.svelte-xh6bpr.svelte-xh6bpr{color:#424657}.taskboard-column-issue-count.svelte-xh6bpr.svelte-xh6bpr{color:#37ACC8;display:inline-block;padding:0 0.25em}.taskboard.svelte-xh6bpr.svelte-xh6bpr{position:relative}.powered-by.svelte-6ywnhs.svelte-6ywnhs.svelte-6ywnhs{position:absolute;bottom:10px;right:10px;padding:7px;border-radius:4px;opacity:0.5;transition:opacity 0.1s, background 0.1s;color:#333;z-index:10;align-items:center;display:flex}.powered-by.svelte-6ywnhs svg.svelte-6ywnhs.svelte-6ywnhs{vertical-align:bottom}.powered-by.svelte-6ywnhs:not(:hover) .logo.svelte-6ywnhs.svelte-6ywnhs{color:#999}.powered-by.svelte-6ywnhs.svelte-6ywnhs.svelte-6ywnhs:hover{opacity:1;box-shadow:0 1px 3px rgba(0, 0, 0, 0.3);background:white}.powered-by.svelte-6ywnhs:hover .help.svelte-6ywnhs.svelte-6ywnhs{display:block}.powered-by.svelte-6ywnhs .help.svelte-6ywnhs.svelte-6ywnhs{font-size:0.9em;display:none}.powered-by.svelte-6ywnhs .logo.svelte-6ywnhs.svelte-6ywnhs{margin-left:0.5em}.powered-by.svelte-6ywnhs .help-item.svelte-6ywnhs.svelte-6ywnhs{margin-left:0.5em}.powered-by.svelte-6ywnhs .help-item.svelte-6ywnhs+.help-item.svelte-6ywnhs{margin-left:1em}.powered-by.svelte-6ywnhs .help-item.svelte-6ywnhs.svelte-6ywnhs{display:inline-block}.dropdown-parent.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{position:relative}.help-dropdown.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{border-radius:4px;margin:0;margin-top:5px;text-align:left;height:auto;position:relative;background:transparent;border:none;z-index:999;width:100%;min-width:0 !important;max-width:none !important;padding:0.6em 0;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.1);box-shadow:0 0.1rem 1rem rgba(0, 0, 0, 0.075);position:absolute;top:100%;z-index:100;left:0px;right:auto;display:block}.help-dropdown.svelte-14xqd02 .category.svelte-14xqd02.svelte-14xqd02{color:#37ACC8;font-weight:bold;padding:0 0.8rem}.help-dropdown.svelte-14xqd02 .note.svelte-14xqd02.svelte-14xqd02{padding:0 0.8rem;color:#6c757d;margin:0}.help-dropdown.svelte-14xqd02 .note em.svelte-14xqd02.svelte-14xqd02{font-style:italic}.help-dropdown.svelte-14xqd02 .note.svelte-14xqd02+.note.svelte-14xqd02{margin-top:5px}.board-filter.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{width:300px}.board-filter.expanded.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{width:500px;max-width:100%}.board-filter.svelte-14xqd02>input.svelte-14xqd02.svelte-14xqd02{width:100%}.icon.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{color:#dee2e6}.board-card-container.svelte-8j5nx2.svelte-8j5nx2{width:100%;margin-bottom:10px}.board-card.svelte-8j5nx2.svelte-8j5nx2{background:white;border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);position:relative;z-index:1;padding:4px 8px;cursor:default}.board-card.svelte-8j5nx2 .header.svelte-8j5nx2{margin-bottom:7px}.card-link:not(:last-child)>.card-status{margin-bottom:-2px !important}.board-card-links.attached .card-link:last-child>.card-status .state:last-child,.board-card>.card-status .state:last-child{border-bottom-right-radius:4px}.board-card-links.attached .card-link:last-child>.card-status .state:first-child,.board-card>.card-status .state:first-child{border-bottom-left-radius:4px}.board-card-links.svelte-8j5nx2.svelte-8j5nx2{margin-top:2px}.header.svelte-8j5nx2.svelte-8j5nx2{display:flex;align-items:center;user-select:none}.header.svelte-8j5nx2>.svelte-8j5nx2{flex-shrink:0}.header.svelte-8j5nx2>.repository.svelte-8j5nx2{flex:1}.header.svelte-8j5nx2>.collaborator-links.svelte-8j5nx2{display:flex;align-items:center}.issue-type.svelte-8j5nx2.svelte-8j5nx2{margin-right:3px}.issue-type-pull-request.svelte-8j5nx2.svelte-8j5nx2{color:#6cc644}.issue-number.svelte-8j5nx2.svelte-8j5nx2{font-weight:bold;margin-right:6px;display:flex;align-items:center;text-decoration:none}.repository.svelte-8j5nx2.svelte-8j5nx2,.short-title.svelte-8j5nx2.svelte-8j5nx2{color:#6c757d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.title.svelte-8j5nx2.svelte-8j5nx2{font-size:1.1em;margin:0 0 9px 0;min-height:30px;line-height:1.2em;color:#495057;overflow:hidden}.footer.svelte-8j5nx2.svelte-8j5nx2{display:flex;flex-direction:row;flex-wrap:wrap}.links.svelte-8j5nx2.svelte-8j5nx2{margin-left:auto}.links.svelte-8j5nx2 a.svelte-8j5nx2{color:#adb5bd}.links.svelte-8j5nx2 a.svelte-8j5nx2:hover{color:#6c757d}.tag.label,.tag.milestone{margin-right:4px;margin-bottom:4px}.tag.milestone{color:#343a40 !important;border:solid 1px #6c757d}.card-link:first-child{border-top:none !important;margin-top:1px !important}.board-card-links.attached.svelte-8j5nx2.svelte-8j5nx2{background:#F9F9F9;border-radius:0 0 4px 4px;box-shadow:inset 0 3px 5px -2px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);margin-top:-6px;position:relative;padding:7px 8px 4px 8px}.progress.svelte-8j5nx2.svelte-8j5nx2{display:flex;flex-direction:row;align-items:center;margin-bottom:7px;cursor:pointer}.progress.svelte-8j5nx2:hover svg.svelte-8j5nx2{color:#6c757d}.progress.svelte-8j5nx2 svg.svelte-8j5nx2{color:#CCC;transition:color 0.3s}.progress.svelte-8j5nx2 .bar.svelte-8j5nx2{border-radius:3px;height:5px;width:80px;background:#EEE;margin:auto 6px}.progress.svelte-8j5nx2 .bar .indicator.svelte-8j5nx2{border-radius:3px;background:#6c757d;height:100%}.progress.svelte-8j5nx2 .text.svelte-8j5nx2{margin-left:6px;font-size:0.9rem;color:#6c757d}.notifications.svelte-14ytxa4{position:fixed;z-index:1010;top:24px;right:24px}.avatar.svelte-1ka4vk5.svelte-1ka4vk5{position:relative;display:inline-block;overflow:hidden;color:#fff;white-space:nowrap;text-align:center;vertical-align:middle;background:#ccc;width:32px;height:32px;line-height:32px}.avatar-shadow.svelte-1ka4vk5.svelte-1ka4vk5{position:absolute;top:0;left:0;width:100%;height:100%;box-shadow:inset 0 0 2px 0 rgba(0, 0, 0, 0.1)}.avatar-rounded.svelte-1ka4vk5.svelte-1ka4vk5{border-radius:50%}.avatar-rounded.svelte-1ka4vk5 .avatar-shadow.svelte-1ka4vk5{border-radius:50%}.loader.svelte-scyooh.svelte-scyooh{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);text-align:center;z-index:200;pointer-events:none}.loader.svelte-scyooh>.content.svelte-scyooh{opacity:0.3;transition:opacity 0.5s}.loader.shown.svelte-scyooh>.content.svelte-scyooh{opacity:1;animation:svelte-scyooh-pulsate 1s infinite;animation-timing-function:ease-in-out}.loader.svelte-scyooh:not(.shown)>.content.svelte-scyooh{opacity:0}@keyframes svelte-scyooh-pulsate{0%{transform:scale(1);opacity:1}50%{transform:scale(0.9);opacity:0.8}100%{transform:scale(1);opacity:1}}.notification.svelte-eswexs{box-sizing:border-box;margin:0;padding:0;color:#6c757d;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;width:384px;max-width:calc(100vw - 32px);padding:16px 24px;overflow:hidden;line-height:1.5;background:#fff;border-radius:3px;box-shadow:0 4px 12px rgba(0, 0, 0, 0.15);border-left:solid 4px #0dcaf0}.notification.error.svelte-eswexs{border-left-color:#dc3545}.notification.warning.svelte-eswexs{border-left-color:#ffc107}.heading.svelte-eswexs{color:#212529;font-weight:normal;font-size:1.2em;margin-bottom:5px}.card-status.svelte-9jlwim.svelte-9jlwim{display:flex;flex-direction:row;align-items:stretch;height:3px;width:auto;margin:3px -8px -4px}.state.svelte-9jlwim.svelte-9jlwim{flex:1;background-color:#adb5bd}.state.svelte-9jlwim>span.svelte-9jlwim{display:none}.state.striped.svelte-9jlwim.svelte-9jlwim{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);animation:svelte-9jlwim-progress-bar-stripes 1s linear infinite;background-size:1rem 1rem}.state.success.svelte-9jlwim.svelte-9jlwim{background-color:#4ede9b;box-shadow:0 1px 2px 0px rgba(36, 124, 83, 0.3)}.state.failure.svelte-9jlwim.svelte-9jlwim{background-color:#ea868f;box-shadow:0 1px 2px 0px rgba(203, 70, 83, 0.3)}.state.action-required.svelte-9jlwim.svelte-9jlwim{background-color:#ffda6a;box-shadow:0 1px 2px 0px rgba(230, 181, 32, 0.3)}.state.svelte-9jlwim+.state.svelte-9jlwim{margin-left:1px}@keyframes svelte-9jlwim-progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.dropdown-parent.svelte-6erjpv{position:relative}.help-dropdown.svelte-6erjpv{border-radius:4px;margin:0;margin-top:5px;text-align:left;height:auto;position:relative;background:transparent;border:none;z-index:999;width:100%;min-width:0 !important;max-width:none !important;padding:0.6em 0;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.1);box-shadow:0 0.1rem 1rem rgba(0, 0, 0, 0.075);position:absolute;top:100%;z-index:100;left:0px;right:auto;display:block}.repository-select.svelte-6erjpv{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10}.overlay.svelte-6erjpv{width:100%;height:100%;background:rgba(30, 30, 30, 0.3)}.issue-creator.svelte-6erjpv{position:absolute;z-index:2;width:500px;max-width:100%;background:white;top:30%;left:50%;transform:translate(-50%);line-height:1.5;border-radius:5px;box-shadow:0 4px 12px rgba(0, 0, 0, 0.15)}.card-link:not(:last-child)>.card-status{margin-bottom:-2px !important}.board-card-links.attached .card-link:last-child>.card-status .state:last-child,.board-card>.card-status .state:last-child{border-bottom-right-radius:4px}.board-card-links.attached .card-link:last-child>.card-status .state:first-child,.board-card>.card-status .state:first-child{border-bottom-left-radius:4px}.header.svelte-1847x9e.svelte-1847x9e{display:flex;align-items:center;user-select:none}.header.svelte-1847x9e>.svelte-1847x9e{flex-shrink:0}.header.svelte-1847x9e>.collaborator-links.svelte-1847x9e{display:flex;align-items:center}.issue-number.svelte-1847x9e.svelte-1847x9e{font-weight:bold;margin-right:6px;display:flex;align-items:center;text-decoration:none}.short-title.svelte-1847x9e.svelte-1847x9e{color:#6c757d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.card-link.svelte-1847x9e.svelte-1847x9e{border-top:solid 1px #F0F0F0;margin-top:2px;padding-top:2px}.card-link.svelte-1847x9e .short-title.svelte-1847x9e{flex:1}.card-link .epic{color:#1d76db}.assignee.svelte-pr1826.svelte-pr1826{box-sizing:border-box;margin:0;font-size:14px;position:relative;display:flex;text-align:center;border-radius:2px;margin-left:3px;transition:margin 0.1s;height:18px}.assignee.svelte-pr1826 img.svelte-pr1826{height:100%;border-radius:2px;vertical-align:unset}.assignee.svelte-pr1826 .icon-shadow.svelte-pr1826{position:absolute;display:none;top:0;left:0;height:100%;width:100%;box-shadow:inset 0 0 2px 0 rgba(20, 20, 20, 0.3);border-radius:2px}.assignee.requested-reviewer.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#bf8700;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.commented.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#0dcaf0;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.approved.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#198754;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.requested-changes.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#dc3545;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.svelte-pr1826+.assignee.svelte-pr1826{margin-left:-6px;box-shadow:0 0 0 1px white}.hovered>.header .assignee+.assignee{margin-left:3px !important;box-shadow:none}.icon.svelte-19fzmfj{margin-right:2px;color:#1d76db}.pull-request-icon.svelte-1l5aazs{margin-right:1px}.pull-request-icon.open.svelte-1l5aazs{color:#28a745}.pull-request-icon.closed.svelte-1l5aazs{color:#cb2431}.pull-request-icon.merged.svelte-1l5aazs{color:#6f42c1}.pull-request-icon.draft.svelte-1l5aazs{color:#6e7781}.tag.svelte-1achp75{list-style:none;display:inline-block;height:auto;margin:0 4px 4px 0;padding:1px 7px;font-size:12px;font-weight:500;line-height:20px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:white;background:#fafafa;border-radius:4px;text-decoration:none}.tag.svelte-1achp75:not(a){cursor:default}.tag.inverted.svelte-1achp75{color:#333}.svelte-1achp75:not(a.tag, .tag.clickable){cursor:default}.icon.svelte-7bwbjm{margin-right:2px}.icon.issue.open.svelte-7bwbjm,.icon.depends-on.closed.svelte-7bwbjm{color:#28a745}.icon.issue.closed.svelte-7bwbjm,.icon.depends-on.svelte-7bwbjm{color:#cb2431}.icon.linked-to.svelte-7bwbjm{color:#37ACC8}ul.svelte-bz5n6r{list-style:none;margin:0;padding:0}li.svelte-bz5n6r{padding:0 0.8rem;line-height:2em}li.selectable.svelte-bz5n6r{cursor:pointer}li.selectable.svelte-bz5n6r:hover,li.selectable.active.svelte-bz5n6r{background:rgba(55, 172, 200, 0.1)}li.text.svelte-bz5n6r{color:#6c757d}.matched.svelte-bz5n6r{background:rgba(55, 172, 200, 0.2);color:#2c8aa0}.icon.svelte-1og232h{vertical-align:initial}
|
|
1
|
+
.icon.svelte-1og232h{vertical-align:initial}
|
|
2
|
+
ul.svelte-bz5n6r{list-style:none;margin:0;padding:0}li.svelte-bz5n6r{padding:0 0.8rem;line-height:2em}li.selectable.svelte-bz5n6r{cursor:pointer}li.selectable.svelte-bz5n6r:hover,li.selectable.active.svelte-bz5n6r{background:rgba(55, 172, 200, 0.1)}li.text.svelte-bz5n6r{color:#6c757d}.matched.svelte-bz5n6r{background:rgba(55, 172, 200, 0.2);color:#2c8aa0}
|
|
3
|
+
.dropdown-parent.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{position:relative}.help-dropdown.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{border-radius:4px;margin:0;margin-top:5px;text-align:left;height:auto;position:relative;background:transparent;border:none;z-index:999;width:100%;min-width:0 !important;max-width:none !important;padding:0.6em 0;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.1);box-shadow:0 0.1rem 1rem rgba(0, 0, 0, 0.075);position:absolute;top:100%;z-index:100;left:0px;right:auto;display:block}.help-dropdown.svelte-14xqd02 .category.svelte-14xqd02.svelte-14xqd02{color:#37ACC8;font-weight:bold;padding:0 0.8rem}.help-dropdown.svelte-14xqd02 .note.svelte-14xqd02.svelte-14xqd02{padding:0 0.8rem;color:#6c757d;margin:0}.help-dropdown.svelte-14xqd02 .note em.svelte-14xqd02.svelte-14xqd02{font-style:italic}.help-dropdown.svelte-14xqd02 .note.svelte-14xqd02+.note.svelte-14xqd02{margin-top:5px}.board-filter.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{width:300px}.board-filter.expanded.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{width:500px;max-width:100%}.board-filter.svelte-14xqd02>input.svelte-14xqd02.svelte-14xqd02{width:100%}.icon.svelte-14xqd02.svelte-14xqd02.svelte-14xqd02{color:#dee2e6}
|
|
4
|
+
.avatar.svelte-1ka4vk5.svelte-1ka4vk5{position:relative;display:inline-block;overflow:hidden;color:#fff;white-space:nowrap;text-align:center;vertical-align:middle;background:#ccc;width:32px;height:32px;line-height:32px}.avatar-shadow.svelte-1ka4vk5.svelte-1ka4vk5{position:absolute;top:0;left:0;width:100%;height:100%;box-shadow:inset 0 0 2px 0 rgba(0, 0, 0, 0.1)}.avatar-rounded.svelte-1ka4vk5.svelte-1ka4vk5{border-radius:50%}.avatar-rounded.svelte-1ka4vk5 .avatar-shadow.svelte-1ka4vk5{border-radius:50%}
|
|
5
|
+
.loader.svelte-scyooh.svelte-scyooh{position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);text-align:center;z-index:200;pointer-events:none}.loader.svelte-scyooh>.content.svelte-scyooh{opacity:0.3;transition:opacity 0.5s}.loader.shown.svelte-scyooh>.content.svelte-scyooh{opacity:1;animation:svelte-scyooh-pulsate 1s infinite;animation-timing-function:ease-in-out}.loader.svelte-scyooh:not(.shown)>.content.svelte-scyooh{opacity:0}@keyframes svelte-scyooh-pulsate{0%{transform:scale(1);opacity:1}50%{transform:scale(0.9);opacity:0.8}100%{transform:scale(1);opacity:1}}
|
|
6
|
+
.powered-by.svelte-6ywnhs.svelte-6ywnhs.svelte-6ywnhs{position:absolute;bottom:10px;right:10px;padding:7px;border-radius:4px;opacity:0.5;transition:opacity 0.1s, background 0.1s;color:#333;z-index:10;align-items:center;display:flex}.powered-by.svelte-6ywnhs svg.svelte-6ywnhs.svelte-6ywnhs{vertical-align:bottom}.powered-by.svelte-6ywnhs:not(:hover) .logo.svelte-6ywnhs.svelte-6ywnhs{color:#999}.powered-by.svelte-6ywnhs.svelte-6ywnhs.svelte-6ywnhs:hover{opacity:1;box-shadow:0 1px 3px rgba(0, 0, 0, 0.3);background:white}.powered-by.svelte-6ywnhs:hover .help.svelte-6ywnhs.svelte-6ywnhs{display:block}.powered-by.svelte-6ywnhs .help.svelte-6ywnhs.svelte-6ywnhs{font-size:0.9em;display:none}.powered-by.svelte-6ywnhs .logo.svelte-6ywnhs.svelte-6ywnhs{margin-left:0.5em}.powered-by.svelte-6ywnhs .help-item.svelte-6ywnhs.svelte-6ywnhs{margin-left:0.5em}.powered-by.svelte-6ywnhs .help-item.svelte-6ywnhs+.help-item.svelte-6ywnhs{margin-left:1em}.powered-by.svelte-6ywnhs .help-item.svelte-6ywnhs.svelte-6ywnhs{display:inline-block}
|
|
7
|
+
.notifications.svelte-14ytxa4{position:fixed;z-index:1010;top:24px;right:24px}
|
|
8
|
+
.notification.svelte-eswexs{box-sizing:border-box;margin:0;padding:0;color:#6c757d;font-size:14px;font-variant:tabular-nums;line-height:1.5;list-style:none;width:384px;max-width:calc(100vw - 32px);padding:16px 24px;overflow:hidden;line-height:1.5;background:#fff;border-radius:3px;box-shadow:0 4px 12px rgba(0, 0, 0, 0.15);border-left:solid 4px #0dcaf0}.notification.error.svelte-eswexs{border-left-color:#dc3545}.notification.warning.svelte-eswexs{border-left-color:#ffc107}.heading.svelte-eswexs{color:#212529;font-weight:normal;font-size:1.2em;margin-bottom:5px}
|
|
9
|
+
.tag.svelte-pfjxww{list-style:none;display:inline-block;height:auto;margin:0 4px 4px 0;padding:2px 7px;font-size:12px;font-weight:400;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:white;background:#fafafa;border-radius:6px;text-decoration:none}.tag.svelte-pfjxww:not(a){cursor:default}.tag.inverted.svelte-pfjxww{color:#333}.svelte-pfjxww:not(a.tag, .tag.clickable){cursor:default}
|
|
10
|
+
.pull-request-icon.svelte-1vxuq5n{margin-right:3px}.pull-request-icon.open.svelte-1vxuq5n{color:#1a7f37}.pull-request-icon.closed.svelte-1vxuq5n{color:#cf222e}.pull-request-icon.merged.svelte-1vxuq5n{color:#8250df}.pull-request-icon.draft.svelte-1vxuq5n{color:#57606a}
|
|
11
|
+
.icon.svelte-tuoxjm{margin-right:3px;color:#1d76db}
|
|
12
|
+
.card-status.svelte-9jlwim.svelte-9jlwim{display:flex;flex-direction:row;align-items:stretch;height:3px;width:auto;margin:3px -8px -4px}.state.svelte-9jlwim.svelte-9jlwim{flex:1;background-color:#adb5bd}.state.svelte-9jlwim>span.svelte-9jlwim{display:none}.state.striped.svelte-9jlwim.svelte-9jlwim{background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);animation:svelte-9jlwim-progress-bar-stripes 1s linear infinite;background-size:1rem 1rem}.state.success.svelte-9jlwim.svelte-9jlwim{background-color:#4ede9b;box-shadow:0 1px 2px 0px rgba(36, 124, 83, 0.3)}.state.failure.svelte-9jlwim.svelte-9jlwim{background-color:#ea868f;box-shadow:0 1px 2px 0px rgba(203, 70, 83, 0.3)}.state.action-required.svelte-9jlwim.svelte-9jlwim{background-color:#ffda6a;box-shadow:0 1px 2px 0px rgba(230, 181, 32, 0.3)}.state.svelte-9jlwim+.state.svelte-9jlwim{margin-left:1px}@keyframes svelte-9jlwim-progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}
|
|
13
|
+
.assignee.svelte-pr1826.svelte-pr1826{box-sizing:border-box;margin:0;font-size:14px;position:relative;display:flex;text-align:center;border-radius:2px;margin-left:3px;transition:margin 0.1s;height:18px}.assignee.svelte-pr1826 img.svelte-pr1826{height:100%;border-radius:2px;vertical-align:unset}.assignee.svelte-pr1826 .icon-shadow.svelte-pr1826{position:absolute;display:none;top:0;left:0;height:100%;width:100%;box-shadow:inset 0 0 2px 0 rgba(20, 20, 20, 0.3);border-radius:2px}.assignee.requested-reviewer.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#bf8700;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.commented.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#0dcaf0;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.approved.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#198754;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.requested-changes.svelte-pr1826.svelte-pr1826:before{content:"";display:block;background:#dc3545;box-shadow:0 0 0 2px white;width:6px;height:6px;border-radius:50%;position:absolute;top:-2px;left:-2px;z-index:1}.assignee.svelte-pr1826+.assignee.svelte-pr1826{margin-left:-6px;box-shadow:0 0 0 1px white}.hovered>.header .assignee+.assignee{margin-left:3px !important;box-shadow:none}
|
|
14
|
+
.icon.svelte-1is0y1z{margin-right:3px}.icon.closed.svelte-1is0y1z{color:#8250df}.icon.open.svelte-1is0y1z{color:#1a7f37}
|
|
15
|
+
.card-link:not(:last-child)>.card-status{margin-bottom:-2px !important}.board-card-links.attached .card-link:last-child>.card-status .state:last-child,.board-card>.card-status .state:last-child{border-bottom-right-radius:4px}.board-card-links.attached .card-link:last-child>.card-status .state:first-child,.board-card>.card-status .state:first-child{border-bottom-left-radius:4px}.header.svelte-1847x9e.svelte-1847x9e{display:flex;align-items:center;user-select:none}.header.svelte-1847x9e>.svelte-1847x9e{flex-shrink:0}.header.svelte-1847x9e>.collaborator-links.svelte-1847x9e{display:flex;align-items:center}.issue-number.svelte-1847x9e.svelte-1847x9e{font-weight:bold;margin-right:6px;display:flex;align-items:center;text-decoration:none}.short-title.svelte-1847x9e.svelte-1847x9e{color:#6c757d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.card-link.svelte-1847x9e.svelte-1847x9e{border-top:solid 1px #F0F0F0;margin-top:2px;padding-top:2px}.card-link.svelte-1847x9e .short-title.svelte-1847x9e{flex:1}.card-link .epic{color:#1d76db}
|
|
16
|
+
.board-card-container.svelte-1hk128i.svelte-1hk128i{width:100%;margin-bottom:10px}.board-card.svelte-1hk128i.svelte-1hk128i{background:white;border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);position:relative;z-index:1;padding:4px 8px;cursor:default}.board-card.svelte-1hk128i .header.svelte-1hk128i{margin-bottom:7px}.card-link:not(:last-child)>.card-status{margin-bottom:-2px !important}.board-card-links.attached .card-link:last-child>.card-status .state:last-child,.board-card>.card-status .state:last-child{border-bottom-right-radius:4px}.board-card-links.attached .card-link:last-child>.card-status .state:first-child,.board-card>.card-status .state:first-child{border-bottom-left-radius:4px}.board-card-links.svelte-1hk128i.svelte-1hk128i{margin-top:2px}.header.svelte-1hk128i.svelte-1hk128i{display:flex;align-items:center;user-select:none}.header.svelte-1hk128i>.svelte-1hk128i{flex-shrink:0}.header.svelte-1hk128i>.repository.svelte-1hk128i{flex:1}.header.svelte-1hk128i>.collaborator-links.svelte-1hk128i{display:flex;align-items:center}.issue-type.svelte-1hk128i.svelte-1hk128i{margin-right:3px}.issue-type-pull-request.svelte-1hk128i.svelte-1hk128i{color:#6cc644}.issue-number.svelte-1hk128i.svelte-1hk128i{font-weight:bold;margin-right:6px;display:flex;align-items:center;text-decoration:none}.repository.svelte-1hk128i.svelte-1hk128i,.short-title.svelte-1hk128i.svelte-1hk128i{color:#6c757d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.title.svelte-1hk128i.svelte-1hk128i{font-size:1.1em;margin:0 0 9px 0;min-height:30px;line-height:1.2em;color:#495057;overflow:hidden}.footer.svelte-1hk128i.svelte-1hk128i{display:flex;flex-direction:row;flex-wrap:wrap}.links.svelte-1hk128i.svelte-1hk128i{margin-left:auto}.links.svelte-1hk128i a.svelte-1hk128i{color:#adb5bd}.links.svelte-1hk128i a.svelte-1hk128i:hover{color:#6c757d}.tag.label,.tag.milestone{margin-right:4px;margin-bottom:4px}.tag.milestone{color:#343a40 !important;border:solid 1px #6c757d}.card-link:first-child{border-top:none !important;margin-top:1px !important}.board-card-links.attached.svelte-1hk128i.svelte-1hk128i{background:#F9F9F9;border-radius:0 0 4px 4px;box-shadow:inset 0 3px 5px -2px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);margin-top:-6px;position:relative;padding:7px 8px 4px 8px}.progress.svelte-1hk128i.svelte-1hk128i{display:flex;flex-direction:row;align-items:center;margin-bottom:7px;cursor:pointer}.progress.svelte-1hk128i svg.svelte-1hk128i{color:#6c757d}.progress.svelte-1hk128i .bar.svelte-1hk128i{border-radius:3px;height:5px;width:80px;background:#e9ecef;margin:auto 6px}.progress.svelte-1hk128i .bar .indicator.svelte-1hk128i{border-radius:3px;background:#6c757d;height:100%}.progress.svelte-1hk128i .text.svelte-1hk128i{margin-left:6px;font-size:0.9rem;color:#6c757d}
|
|
17
|
+
.dropdown-parent.svelte-6erjpv{position:relative}.help-dropdown.svelte-6erjpv{border-radius:4px;margin:0;margin-top:5px;text-align:left;height:auto;position:relative;background:transparent;border:none;z-index:999;width:100%;min-width:0 !important;max-width:none !important;padding:0.6em 0;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.1);box-shadow:0 0.1rem 1rem rgba(0, 0, 0, 0.075);position:absolute;top:100%;z-index:100;left:0px;right:auto;display:block}.repository-select.svelte-6erjpv{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10}.overlay.svelte-6erjpv{width:100%;height:100%;background:rgba(30, 30, 30, 0.3)}.issue-creator.svelte-6erjpv{position:absolute;z-index:2;width:500px;max-width:100%;background:white;top:30%;left:50%;transform:translate(-50%);line-height:1.5;border-radius:5px;box-shadow:0 4px 12px rgba(0, 0, 0, 0.15)}
|
|
18
|
+
.taskboard.svelte-xh6bpr.svelte-xh6bpr{height:100vh;display:flex;flex-direction:column}@media all and (max-width: 600px){.board-filter{width:100% !important}.navbar .board-filter-parent{flex:1 !important}.navbar .logo{width:32px;height:32px}}.taskboard-error.svelte-xh6bpr.svelte-xh6bpr{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);text-align:center}.taskboard-error.svelte-xh6bpr p.svelte-xh6bpr{font-size:1.3em;margin-top:1.7rem;margin-bottom:3rem;color:#495057}.taskboard-board.svelte-xh6bpr.svelte-xh6bpr{display:flex;flex:1;width:100%;padding:3px;padding-top:0;overflow-x:auto}.taskboard-column.svelte-xh6bpr.svelte-xh6bpr{display:flex;flex-direction:column;min-width:250px;flex:1;border-radius:2px;margin:3px;background:#ebecf0}.taskboard-column.collapsed.svelte-xh6bpr.svelte-xh6bpr{line-height:2em;min-width:42px;flex:0}.taskboard-column-items.svelte-xh6bpr.svelte-xh6bpr{flex:1;overflow-y:auto;padding:3px 10px 10px}.taskboard-column-header.svelte-xh6bpr.svelte-xh6bpr{text-align:center;line-height:2.4em;font-size:1.25em;color:inherit}.taskboard-column-collapse.svelte-xh6bpr.svelte-xh6bpr{color:#adb5bd;float:left;padding:0 12px;line-height:2.4em;margin-right:-20px;font-size:1.2rem}.taskboard-column-collapse.svelte-xh6bpr.svelte-xh6bpr:hover{color:#495057}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-collapse.svelte-xh6bpr{float:unset;padding:0 12px;margin:0}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-header.svelte-xh6bpr{display:flex;flex-direction:column;flex:1}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-name.svelte-xh6bpr,.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-issue-count.svelte-xh6bpr{transform:rotate(-180deg);writing-mode:vertical-rl}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-name.svelte-xh6bpr{order:2}.taskboard-column.collapsed.svelte-xh6bpr .taskboard-column-issue-count.svelte-xh6bpr{padding:0.5em 0;order:0}.taskboard-column-name.svelte-xh6bpr.svelte-xh6bpr{color:#424657}.taskboard-column-issue-count.svelte-xh6bpr.svelte-xh6bpr{color:#37ACC8;display:inline-block;padding:0 0.25em}.taskboard.svelte-xh6bpr.svelte-xh6bpr{position:relative}
|