@sourcegraph/cody-web 0.32.11 → 0.33.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/dist/{agent.worker-Qda9Vtb_.mjs → agent.worker-2jv6UYtG.mjs} +479 -549
- package/dist/agent.worker.js +2 -2
- package/dist/demo/App.d.ts.map +1 -1
- package/dist/{git-log-DkGd4KuH.mjs → git-log-Sw0MOWAb.mjs} +1 -1
- package/dist/index.js +1711 -3651
- package/dist/{lite-IdTumKP8.mjs → lite-ch5VbcSy.mjs} +1 -1
- package/dist/style.css +42 -378
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/util-BcM-aRzi.mjs +2033 -0
- package/dist/{vscode-shim-B21LtK8E.mjs → vscode-shim-DCfZW3km.mjs} +429 -444
- package/package.json +1 -1
- package/dist/util-Bw-hmK0e.mjs +0 -1811
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var __defProp = Object.defineProperty;
|
|
2
2
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
3
3
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
4
|
-
import { b as base64Js } from "./agent.worker-
|
|
4
|
+
import { b as base64Js } from "./agent.worker-2jv6UYtG.mjs";
|
|
5
5
|
var __defProp2 = Object.defineProperty;
|
|
6
6
|
var __defNormalProp2 = (obj, key, value) => key in obj ? __defProp2(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
7
7
|
var __publicField2 = (obj, key, value) => {
|
package/dist/style.css
CHANGED
|
@@ -953,343 +953,6 @@ body[data-vscode-theme-kind='vscode-light'] ._content_36jko_162 pre > code {
|
|
|
953
953
|
._error-content_1sixu_153 {
|
|
954
954
|
margin-bottom: 16px;
|
|
955
955
|
}
|
|
956
|
-
:root {
|
|
957
|
-
--code-font-size: #{(12/14)}em;
|
|
958
|
-
--code-font-family: sfmono-regular, consolas, menlo, dejavu sans mono, monospace;
|
|
959
|
-
}
|
|
960
|
-
|
|
961
|
-
._code_1suzz_6 {
|
|
962
|
-
white-space: pre;
|
|
963
|
-
line-height: 1rem;
|
|
964
|
-
font-size: var(--code-font-size);
|
|
965
|
-
font-family: var(--code-font-family);
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
._small_1suzz_13 {
|
|
969
|
-
font-size: 0.75rem;
|
|
970
|
-
line-height: 1rem;
|
|
971
|
-
|
|
972
|
-
/* Bootstrap applies `font-weight: 400;` to `small` element,
|
|
973
|
-
but we want to control `font-weight` only with `strong` or `.font-weight-medium`. */
|
|
974
|
-
font-weight: inherit;
|
|
975
|
-
}
|
|
976
|
-
|
|
977
|
-
._code-excerpt_1taji_1 .line,
|
|
978
|
-
._code-excerpt_1taji_1 .code {
|
|
979
|
-
height: 16px;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
@media (min-width: 768px) {._code-excerpt_1taji_1 .line,
|
|
983
|
-
._code-excerpt_1taji_1 .code {
|
|
984
|
-
height: 18px;
|
|
985
|
-
}
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
._code-excerpt_1taji_1 .line,
|
|
989
|
-
._code-excerpt_1taji_1 .code {
|
|
990
|
-
|
|
991
|
-
vertical-align: middle;
|
|
992
|
-
padding: 0;
|
|
993
|
-
}
|
|
994
|
-
._code-excerpt_1taji_1 .line {
|
|
995
|
-
min-width: 1.5rem;
|
|
996
|
-
text-align: right;
|
|
997
|
-
user-select: none;
|
|
998
|
-
cursor: pointer;
|
|
999
|
-
}
|
|
1000
|
-
._code-excerpt_1taji_1 .line:hover {
|
|
1001
|
-
text-decoration: none;
|
|
1002
|
-
}
|
|
1003
|
-
._code-excerpt_1taji_1 .line::before {
|
|
1004
|
-
/* draw line number with css so it cannot be copied to clipboard */
|
|
1005
|
-
content: attr(data-line);
|
|
1006
|
-
color: var(--cody-chat-code-text-muted);
|
|
1007
|
-
}
|
|
1008
|
-
._code-excerpt_1taji_1 .code {
|
|
1009
|
-
white-space: pre;
|
|
1010
|
-
padding-left: 1rem;
|
|
1011
|
-
}
|
|
1012
|
-
._code-excerpt-error_1taji_1 {
|
|
1013
|
-
width: 100%;
|
|
1014
|
-
}
|
|
1015
|
-
._code-excerpt-alert_1taji_1 {
|
|
1016
|
-
margin-bottom: 0;
|
|
1017
|
-
color: #c92a2a;
|
|
1018
|
-
}
|
|
1019
|
-
._code-excerpt_1taji_1 .hl-text {
|
|
1020
|
-
color: #657b83;
|
|
1021
|
-
}
|
|
1022
|
-
:root {
|
|
1023
|
-
--cody-chat-code-background: var(--code-background);
|
|
1024
|
-
--cody-chat-code-header-background: var(--vscode-editorGroupHeader-tabsBackground);
|
|
1025
|
-
--cody-chat-code-subtle-background: var(--vscode-titleBar-inactiveBackground);
|
|
1026
|
-
--cody-chat-code-border-color: var(--vscode-widget-border);
|
|
1027
|
-
--cody-chat-code-text-muted: var(--vscode-input-placeholderForeground);
|
|
1028
|
-
--cody-chat-code-focus-border: var(--vscode-focusBorder);
|
|
1029
|
-
--cody-chat-code-mark-background: #f8e688;
|
|
1030
|
-
--cody-chat-code-text-highlighted: #566880;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
._result-container_1qba3_12 {
|
|
1034
|
-
contain: paint;
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
._result-container_1qba3_12 .match-highlight {
|
|
1038
|
-
color: var(--cody-chat-code-text-highlighted);
|
|
1039
|
-
background-color: var(--cody-chat-code-mark-background) !important;
|
|
1040
|
-
}
|
|
1041
|
-
|
|
1042
|
-
._result-container_1qba3_12 .sr-only {
|
|
1043
|
-
position: absolute;
|
|
1044
|
-
width: 0.0625rem;
|
|
1045
|
-
height: 0.0625rem;
|
|
1046
|
-
padding: 0;
|
|
1047
|
-
margin: -0.0625rem;
|
|
1048
|
-
overflow: hidden;
|
|
1049
|
-
clip: rect(0, 0, 0, 0);
|
|
1050
|
-
white-space: nowrap;
|
|
1051
|
-
border: 0;
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
._header_1qba3_32 {
|
|
1055
|
-
background-color: var(--vscode-editor-background);
|
|
1056
|
-
position: sticky;
|
|
1057
|
-
top: 0;
|
|
1058
|
-
border-bottom: solid 1px var(--cody-chat-code-border-color);
|
|
1059
|
-
|
|
1060
|
-
/* Show on top of search result contents */
|
|
1061
|
-
z-index: 1;
|
|
1062
|
-
}
|
|
1063
|
-
|
|
1064
|
-
._header-title_1qba3_1 {
|
|
1065
|
-
flex: 1 1 auto;
|
|
1066
|
-
display: flex;
|
|
1067
|
-
flex-wrap: wrap;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
._result_1qba3_12 {
|
|
1071
|
-
border-bottom: solid 1px var(--cody-chat-code-border-color);
|
|
1072
|
-
background-color: var(--vscode-editor-background);
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
._result_1qba3_12 code {
|
|
1076
|
-
padding: 0 !important;
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
._search-result-match_1qba3_57 {
|
|
1080
|
-
/* Don't use cascading link style */
|
|
1081
|
-
text-decoration: none;
|
|
1082
|
-
display: flex;
|
|
1083
|
-
align-items: flex-start;
|
|
1084
|
-
overflow-x: auto;
|
|
1085
|
-
overflow-y: hidden;
|
|
1086
|
-
position: relative;
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
._horizontal-divider-between_1qba3_67:not(:last-child) {
|
|
1090
|
-
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
1091
|
-
}
|
|
1092
|
-
|
|
1093
|
-
._focusable-block_1qba3_73:focus-visible {
|
|
1094
|
-
box-shadow: inset 0 0 0 1px var(--cody-chat-code-focus-border);
|
|
1095
|
-
}
|
|
1096
|
-
|
|
1097
|
-
._clickable_1qba3_79 {
|
|
1098
|
-
cursor: pointer;
|
|
1099
|
-
}
|
|
1100
|
-
|
|
1101
|
-
._clickable_1qba3_79:hover {
|
|
1102
|
-
text-decoration: none;
|
|
1103
|
-
}
|
|
1104
|
-
|
|
1105
|
-
._divider-between_1qba3_86 > *:not(:last-child)::after {
|
|
1106
|
-
content: ' ';
|
|
1107
|
-
height: 1rem;
|
|
1108
|
-
margin: 0 0.75rem;
|
|
1109
|
-
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
1110
|
-
display: block;
|
|
1111
|
-
}
|
|
1112
|
-
|
|
1113
|
-
._divider-vertical_1qba3_96 {
|
|
1114
|
-
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
1115
|
-
width: 100%;
|
|
1116
|
-
margin: 0.5rem 0;
|
|
1117
|
-
}
|
|
1118
|
-
|
|
1119
|
-
._divider_1qba3_86 {
|
|
1120
|
-
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
1121
|
-
height: 1rem;
|
|
1122
|
-
margin: 0 0.5rem;
|
|
1123
|
-
}
|
|
1124
|
-
|
|
1125
|
-
._title_1qba3_108 {
|
|
1126
|
-
display: flex;
|
|
1127
|
-
align-items: center;
|
|
1128
|
-
flex-grow: 1;
|
|
1129
|
-
min-width: 0;
|
|
1130
|
-
flex-wrap: wrap;
|
|
1131
|
-
}
|
|
1132
|
-
|
|
1133
|
-
._title-inner_1qba3_116 {
|
|
1134
|
-
overflow-wrap: anywhere;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
._toggle-matches-button_1qba3_120 {
|
|
1138
|
-
width: 100%;
|
|
1139
|
-
text-align: left;
|
|
1140
|
-
border: none;
|
|
1141
|
-
padding: 0.25rem 0.5rem;
|
|
1142
|
-
border-top: 1px solid var(--cody-chat-code-border-color);
|
|
1143
|
-
color: var(--cody-chat-code-text-muted);
|
|
1144
|
-
font-size: calc(calc(12/13)*var(--vscode-font-size));
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
._toggle-matches-button_1qba3_120:hover {
|
|
1148
|
-
color: inherit;
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
._toggle-matches-button--expanded_1qba3_1 {
|
|
1152
|
-
position: sticky;
|
|
1153
|
-
bottom: 0;
|
|
1154
|
-
}
|
|
1155
|
-
|
|
1156
|
-
._toggle-matches-button-text_1qba3_1 {
|
|
1157
|
-
margin-left: 0.125rem;
|
|
1158
|
-
}
|
|
1159
|
-
|
|
1160
|
-
._addToContextLabel_1qba3_143 {
|
|
1161
|
-
color: var(--cody-chat-code-text-muted);
|
|
1162
|
-
}
|
|
1163
|
-
._chunk_qvvv3_1 {
|
|
1164
|
-
position: relative;
|
|
1165
|
-
overflow-x: auto;
|
|
1166
|
-
}
|
|
1167
|
-
._info-message_1hay9_1 {
|
|
1168
|
-
--mention-color-opacity: 70%;
|
|
1169
|
-
|
|
1170
|
-
border: 1px solid
|
|
1171
|
-
color-mix(
|
|
1172
|
-
in lch,
|
|
1173
|
-
var(--vscode-inputOption-activeBackground)
|
|
1174
|
-
calc(1.2 * var(--mention-color-opacity)),
|
|
1175
|
-
transparent
|
|
1176
|
-
);
|
|
1177
|
-
background-color: color-mix(
|
|
1178
|
-
in lch,
|
|
1179
|
-
var(--vscode-inputOption-activeBackground) var(--mention-color-opacity),
|
|
1180
|
-
transparent
|
|
1181
|
-
);
|
|
1182
|
-
word-break: break-word;
|
|
1183
|
-
}
|
|
1184
|
-
._dots-holder_10c80_1 {
|
|
1185
|
-
display: flex;
|
|
1186
|
-
gap: 0.2rem;
|
|
1187
|
-
margin: 0.5rem 0;
|
|
1188
|
-
margin-left: 0.25rem;
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
|
-
._dot_10c80_1 {
|
|
1192
|
-
animation: 1s _flash_10c80_1 0.5s infinite;
|
|
1193
|
-
width: 0.25rem !important;
|
|
1194
|
-
height: 0.25rem !important;
|
|
1195
|
-
border-radius: 100%;
|
|
1196
|
-
background-color: var(--vscode-input-foreground);
|
|
1197
|
-
opacity: 0.25;
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
body[data-vscode-theme-kind='vscode-light'] ._dot_10c80_1,
|
|
1201
|
-
body[data-vscode-theme-kind='vscode-high-contrast-light'] ._dot_10c80_1 {
|
|
1202
|
-
background-color: black;
|
|
1203
|
-
}
|
|
1204
|
-
|
|
1205
|
-
._dot_10c80_1:nth-child(2) {
|
|
1206
|
-
animation-delay: 0.6s;
|
|
1207
|
-
}
|
|
1208
|
-
|
|
1209
|
-
._dot_10c80_1:nth-child(3) {
|
|
1210
|
-
animation-delay: 0.7s;
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
@keyframes _flash_10c80_1 {
|
|
1214
|
-
from {
|
|
1215
|
-
opacity: 1;
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
50% {
|
|
1219
|
-
opacity: 1;
|
|
1220
|
-
}
|
|
1221
|
-
|
|
1222
|
-
to {
|
|
1223
|
-
opacity: 0.25;
|
|
1224
|
-
}
|
|
1225
|
-
}
|
|
1226
|
-
._filter_1pc5b_1 {
|
|
1227
|
-
background-color: var(--vscode-sidebar-background);
|
|
1228
|
-
color: var(--vscode-input-foreground);
|
|
1229
|
-
}
|
|
1230
|
-
|
|
1231
|
-
._filter_1pc5b_1._selected_1pc5b_5, ._filter_1pc5b_1._selected_1pc5b_5:hover {
|
|
1232
|
-
background-color: var(--vscode-button-background);
|
|
1233
|
-
color: var(--vscode-button-foreground);
|
|
1234
|
-
}
|
|
1235
|
-
/* Hidden by default */
|
|
1236
|
-
._filters-sidebar_1qmjt_2 {
|
|
1237
|
-
display: none;
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
@media (min-width: 768px) { /* md breakpoint */
|
|
1241
|
-
._filters-sidebar_1qmjt_2 {
|
|
1242
|
-
display: block; /* Show at md breakpoint and above */
|
|
1243
|
-
}
|
|
1244
|
-
}
|
|
1245
|
-
|
|
1246
|
-
._root_1qmjt_12 {
|
|
1247
|
-
container-type: inline-size;
|
|
1248
|
-
-webkit-container-type: inline-size;
|
|
1249
|
-
container-name: root-outer-container;
|
|
1250
|
-
-webkit-container-name: root-outer-container;}
|
|
1251
|
-
|
|
1252
|
-
._root_1qmjt_12 ._results-container_1qmjt_18 {
|
|
1253
|
-
max-width: 100%;
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
._root_1qmjt_12 ._results-container_1qmjt_18._filters-sidebar-hidden_1qmjt_21 {
|
|
1257
|
-
max-width: 100%;
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
@supports (container-type: inline-size) {
|
|
1261
|
-
@container root-outer-container (max-width: 768px) {
|
|
1262
|
-
._root_1qmjt_12 ._results-container_1qmjt_18 ._filters-sidebar_1qmjt_2,
|
|
1263
|
-
._root_1qmjt_12 ._results-container_1qmjt_18 ._filters-sidebar-toggle_1qmjt_28 {
|
|
1264
|
-
display: none !important;
|
|
1265
|
-
}
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
|
-
@container root-outer-container (min-width: 768px) {
|
|
1269
|
-
._root_1qmjt_12 ._results-container_1qmjt_18 ._filters-modal-trigger_1qmjt_34 {
|
|
1270
|
-
display: none !important;
|
|
1271
|
-
}
|
|
1272
|
-
}
|
|
1273
|
-
}
|
|
1274
|
-
|
|
1275
|
-
._filters-sidebar_1qmjt_2 ._root_1qmjt_12 ._results-container_1qmjt_18._root_1qmjt_12 ._results-container_1qmjt_18 ._results-container_1qmjt_18 {
|
|
1276
|
-
transition: all 1s ease-in;
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
|
-
._root_1qmjt_12 ._results-container_1qmjt_18 ._search-results-header_1qmjt_44 {
|
|
1280
|
-
container-type: inline-size;
|
|
1281
|
-
-webkit-container-type: inline-size;
|
|
1282
|
-
container-name: search-results-header;
|
|
1283
|
-
-webkit-container-name: search-results-header;
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
@supports (container-type: inline-size) {
|
|
1287
|
-
@container search-results-header (width < 468px) {
|
|
1288
|
-
._root_1qmjt_12 ._results-container_1qmjt_18 ._search-results-header-label_1qmjt_53 {
|
|
1289
|
-
display: none;
|
|
1290
|
-
}
|
|
1291
|
-
}
|
|
1292
|
-
}
|
|
1293
956
|
._step-container_1xbw7_1 {
|
|
1294
957
|
border-left: 3px solid var(--vscode-sideBar-border);
|
|
1295
958
|
padding: 0.25rem 0.5rem 0.25rem 0.5rem;
|
|
@@ -1748,6 +1411,48 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_h7
|
|
|
1748
1411
|
._code-block_h7t04_67 {
|
|
1749
1412
|
margin-bottom: 0.25rem;
|
|
1750
1413
|
}
|
|
1414
|
+
._dots-holder_10c80_1 {
|
|
1415
|
+
display: flex;
|
|
1416
|
+
gap: 0.2rem;
|
|
1417
|
+
margin: 0.5rem 0;
|
|
1418
|
+
margin-left: 0.25rem;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
._dot_10c80_1 {
|
|
1422
|
+
animation: 1s _flash_10c80_1 0.5s infinite;
|
|
1423
|
+
width: 0.25rem !important;
|
|
1424
|
+
height: 0.25rem !important;
|
|
1425
|
+
border-radius: 100%;
|
|
1426
|
+
background-color: var(--vscode-input-foreground);
|
|
1427
|
+
opacity: 0.25;
|
|
1428
|
+
}
|
|
1429
|
+
|
|
1430
|
+
body[data-vscode-theme-kind='vscode-light'] ._dot_10c80_1,
|
|
1431
|
+
body[data-vscode-theme-kind='vscode-high-contrast-light'] ._dot_10c80_1 {
|
|
1432
|
+
background-color: black;
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
._dot_10c80_1:nth-child(2) {
|
|
1436
|
+
animation-delay: 0.6s;
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
._dot_10c80_1:nth-child(3) {
|
|
1440
|
+
animation-delay: 0.7s;
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1443
|
+
@keyframes _flash_10c80_1 {
|
|
1444
|
+
from {
|
|
1445
|
+
opacity: 1;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
50% {
|
|
1449
|
+
opacity: 1;
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
to {
|
|
1453
|
+
opacity: 0.25;
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1751
1456
|
._marker-container-wrapper_1dxzd_1 {
|
|
1752
1457
|
z-index: 100;
|
|
1753
1458
|
pointer-events: none;
|
|
@@ -2582,9 +2287,6 @@ imported in Sourcegraph shell.
|
|
|
2582
2287
|
.tw-right-2 {
|
|
2583
2288
|
right: 4px;
|
|
2584
2289
|
}
|
|
2585
|
-
.tw-right-8 {
|
|
2586
|
-
right: 16px;
|
|
2587
|
-
}
|
|
2588
2290
|
.tw-top-10 {
|
|
2589
2291
|
top: 20px;
|
|
2590
2292
|
}
|
|
@@ -2594,9 +2296,6 @@ imported in Sourcegraph shell.
|
|
|
2594
2296
|
.tw-top-3 {
|
|
2595
2297
|
top: 6px;
|
|
2596
2298
|
}
|
|
2597
|
-
.tw-top-5 {
|
|
2598
|
-
top: 10px;
|
|
2599
|
-
}
|
|
2600
2299
|
.tw-top-6 {
|
|
2601
2300
|
top: 12px;
|
|
2602
2301
|
}
|
|
@@ -2657,18 +2356,10 @@ imported in Sourcegraph shell.
|
|
|
2657
2356
|
margin-top: 4px;
|
|
2658
2357
|
margin-bottom: 4px;
|
|
2659
2358
|
}
|
|
2660
|
-
.tw-my-20 {
|
|
2661
|
-
margin-top: 40px;
|
|
2662
|
-
margin-bottom: 40px;
|
|
2663
|
-
}
|
|
2664
2359
|
.tw-my-4 {
|
|
2665
2360
|
margin-top: 8px;
|
|
2666
2361
|
margin-bottom: 8px;
|
|
2667
2362
|
}
|
|
2668
|
-
.tw-my-6 {
|
|
2669
|
-
margin-top: 12px;
|
|
2670
|
-
margin-bottom: 12px;
|
|
2671
|
-
}
|
|
2672
2363
|
.tw--mb-px {
|
|
2673
2364
|
margin-bottom: -1px;
|
|
2674
2365
|
}
|
|
@@ -2986,9 +2677,6 @@ imported in Sourcegraph shell.
|
|
|
2986
2677
|
.tw-w-\[220px\] {
|
|
2987
2678
|
width: 220px;
|
|
2988
2679
|
}
|
|
2989
|
-
.tw-w-\[250px\] {
|
|
2990
|
-
width: 250px;
|
|
2991
|
-
}
|
|
2992
2680
|
.tw-w-\[30vw\] {
|
|
2993
2681
|
width: 30vw;
|
|
2994
2682
|
}
|
|
@@ -3019,9 +2707,6 @@ imported in Sourcegraph shell.
|
|
|
3019
2707
|
.tw-min-w-\[200px\] {
|
|
3020
2708
|
min-width: 200px;
|
|
3021
2709
|
}
|
|
3022
|
-
.tw-min-w-\[250px\] {
|
|
3023
|
-
min-width: 250px;
|
|
3024
|
-
}
|
|
3025
2710
|
.tw-min-w-\[325px\] {
|
|
3026
2711
|
min-width: 325px;
|
|
3027
2712
|
}
|
|
@@ -3088,9 +2773,6 @@ imported in Sourcegraph shell.
|
|
|
3088
2773
|
.tw-flex-grow {
|
|
3089
2774
|
flex-grow: 1;
|
|
3090
2775
|
}
|
|
3091
|
-
.tw-grow {
|
|
3092
|
-
flex-grow: 1;
|
|
3093
|
-
}
|
|
3094
2776
|
.tw-border-collapse {
|
|
3095
2777
|
border-collapse: collapse;
|
|
3096
2778
|
}
|
|
@@ -4014,9 +3696,6 @@ imported in Sourcegraph shell.
|
|
|
4014
3696
|
.tw-pt-4 {
|
|
4015
3697
|
padding-top: 8px;
|
|
4016
3698
|
}
|
|
4017
|
-
.tw-pt-8 {
|
|
4018
|
-
padding-top: 16px;
|
|
4019
|
-
}
|
|
4020
3699
|
.tw-text-left {
|
|
4021
3700
|
text-align: left;
|
|
4022
3701
|
}
|
|
@@ -4088,9 +3767,6 @@ imported in Sourcegraph shell.
|
|
|
4088
3767
|
.tw-capitalize {
|
|
4089
3768
|
text-transform: capitalize;
|
|
4090
3769
|
}
|
|
4091
|
-
.tw-italic {
|
|
4092
|
-
font-style: italic;
|
|
4093
|
-
}
|
|
4094
3770
|
.\!tw-leading-\[1\.2\] {
|
|
4095
3771
|
line-height: 1.2 !important;
|
|
4096
3772
|
}
|
|
@@ -5153,21 +4829,9 @@ imported in Sourcegraph shell.
|
|
|
5153
4829
|
}
|
|
5154
4830
|
}
|
|
5155
4831
|
@media (min-width: 768px) {
|
|
5156
|
-
.md\:tw-size-8 {
|
|
5157
|
-
width: 16px;
|
|
5158
|
-
height: 16px;
|
|
5159
|
-
}
|
|
5160
4832
|
.md\:tw-grid-cols-2 {
|
|
5161
4833
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
5162
4834
|
}
|
|
5163
|
-
.md\:tw-px-2 {
|
|
5164
|
-
padding-left: 4px;
|
|
5165
|
-
padding-right: 4px;
|
|
5166
|
-
}
|
|
5167
|
-
.md\:tw-px-4 {
|
|
5168
|
-
padding-left: 8px;
|
|
5169
|
-
padding-right: 8px;
|
|
5170
|
-
}
|
|
5171
4835
|
.md\:tw-px-6 {
|
|
5172
4836
|
padding-left: 12px;
|
|
5173
4837
|
padding-right: 12px;
|