@sourcegraph/code-host-integration 0.0.92 → 0.0.93
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/css/contentPage.main.bundle.css +17 -2
- package/package.json +1 -1
- package/scripts/extensionHostWorker.bundle.js +233 -118
- package/scripts/integration.bundle.js +262 -133
- package/scripts/phabricator.bundle.js +262 -133
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
background-color: transparent;
|
|
26
26
|
border: 1px solid transparent;
|
|
27
27
|
-webkit-user-select: none;
|
|
28
|
+
-moz-user-select: none;
|
|
28
29
|
user-select: none;
|
|
29
30
|
font-size: 0.875rem;
|
|
30
31
|
line-height: 1.4285714286;
|
|
@@ -1339,6 +1340,7 @@ a:where(.AnchorLink-module__anchor-link):not([href]):hover {
|
|
|
1339
1340
|
.chroma .chroma-lnt {
|
|
1340
1341
|
white-space: pre;
|
|
1341
1342
|
-webkit-user-select: none;
|
|
1343
|
+
-moz-user-select: none;
|
|
1342
1344
|
user-select: none;
|
|
1343
1345
|
margin-right: 0.4rem;
|
|
1344
1346
|
padding: 0 0.4rem 0 0.4rem;
|
|
@@ -1347,6 +1349,7 @@ a:where(.AnchorLink-module__anchor-link):not([href]):hover {
|
|
|
1347
1349
|
.chroma .chroma-ln {
|
|
1348
1350
|
white-space: pre;
|
|
1349
1351
|
-webkit-user-select: none;
|
|
1352
|
+
-moz-user-select: none;
|
|
1350
1353
|
user-select: none;
|
|
1351
1354
|
margin-right: 0.4rem;
|
|
1352
1355
|
padding: 0 0.4rem 0 0.4rem;
|
|
@@ -1598,6 +1601,7 @@ a:where(.AnchorLink-module__anchor-link):not([href]):hover {
|
|
|
1598
1601
|
color: var(--tooltip-color);
|
|
1599
1602
|
padding: var(--tooltip-padding-y) var(--tooltip-padding-x);
|
|
1600
1603
|
-webkit-user-select: text;
|
|
1604
|
+
-moz-user-select: text;
|
|
1601
1605
|
user-select: text;
|
|
1602
1606
|
word-wrap: break-word;
|
|
1603
1607
|
border: none;
|
|
@@ -1622,6 +1626,7 @@ a:where(.AnchorLink-module__anchor-link):not([href]):hover {
|
|
|
1622
1626
|
.Tooltip-module__tooltip-wrapper {
|
|
1623
1627
|
display: inline-flex;
|
|
1624
1628
|
-webkit-user-select: text;
|
|
1629
|
+
-moz-user-select: text;
|
|
1625
1630
|
user-select: text;
|
|
1626
1631
|
}
|
|
1627
1632
|
.Tooltip-module__tooltip-trigger-container {
|
|
@@ -1750,6 +1755,7 @@ a:where(.AnchorLink-module__anchor-link):not([href]):hover {
|
|
|
1750
1755
|
.LegendList-module__legend-list {
|
|
1751
1756
|
display: flex;
|
|
1752
1757
|
flex-wrap: wrap;
|
|
1758
|
+
-moz-column-gap: 0.5rem;
|
|
1753
1759
|
column-gap: 0.5rem;
|
|
1754
1760
|
row-gap: 0.25rem;
|
|
1755
1761
|
list-style: none;
|
|
@@ -2185,6 +2191,7 @@ a:where(.AnchorLink-module__anchor-link):not([href]):hover {
|
|
|
2185
2191
|
visibility: hidden;
|
|
2186
2192
|
overflow: hidden;
|
|
2187
2193
|
-webkit-user-select: none;
|
|
2194
|
+
-moz-user-select: none;
|
|
2188
2195
|
user-select: none;
|
|
2189
2196
|
pointer-events: none;
|
|
2190
2197
|
font-weight: 700;
|
|
@@ -2557,6 +2564,7 @@ a.Badge-module__outline-secondary.Badge-module__focus {
|
|
|
2557
2564
|
position: absolute;
|
|
2558
2565
|
opacity: 0;
|
|
2559
2566
|
-webkit-user-select: none;
|
|
2567
|
+
-moz-user-select: none;
|
|
2560
2568
|
user-select: none;
|
|
2561
2569
|
z-index: 1;
|
|
2562
2570
|
flex-shrink: 0;
|
|
@@ -2619,6 +2627,7 @@ a.Badge-module__outline-secondary.Badge-module__focus {
|
|
|
2619
2627
|
border-radius: 0.25rem;
|
|
2620
2628
|
color: var(--text-muted);
|
|
2621
2629
|
-webkit-user-select: none;
|
|
2630
|
+
-moz-user-select: none;
|
|
2622
2631
|
user-select: none;
|
|
2623
2632
|
display: flex;
|
|
2624
2633
|
align-items: center;
|
|
@@ -2865,6 +2874,7 @@ button.Card-module__card:focus {
|
|
|
2865
2874
|
margin-bottom: 0;
|
|
2866
2875
|
padding: 0.25rem;
|
|
2867
2876
|
-webkit-user-select: none;
|
|
2877
|
+
-moz-user-select: none;
|
|
2868
2878
|
user-select: none;
|
|
2869
2879
|
}
|
|
2870
2880
|
.FeedbackPrompt-module__textarea {
|
|
@@ -2995,13 +3005,18 @@ button.Card-module__card:focus {
|
|
|
2995
3005
|
right: calc(0.25rem - 1px);
|
|
2996
3006
|
top: calc(0.35rem - 1px);
|
|
2997
3007
|
}
|
|
2998
|
-
.MultiCombobox-module__input {
|
|
3008
|
+
:root .MultiCombobox-module__input {
|
|
2999
3009
|
border: none;
|
|
3000
3010
|
outline: none;
|
|
3001
3011
|
padding: 0 0 0 0.5rem;
|
|
3002
|
-
box-shadow: none !important;
|
|
3003
3012
|
height: 1.75rem;
|
|
3004
3013
|
}
|
|
3014
|
+
:root .MultiCombobox-module__input.MultiCombobox-module__focus-visible {
|
|
3015
|
+
box-shadow: none;
|
|
3016
|
+
}
|
|
3017
|
+
:root .MultiCombobox-module__input:focus-visible {
|
|
3018
|
+
box-shadow: none;
|
|
3019
|
+
}
|
|
3005
3020
|
.MultiCombobox-module__pill {
|
|
3006
3021
|
display: flex;
|
|
3007
3022
|
border-radius: 0.25rem;
|