@sourcegraph/cody-web 0.23.0 → 0.24.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/LICENSE +201 -0
- package/dist/{agent.worker-BUEGtXBz.mjs → agent.worker-DzDDpFJt.mjs} +297 -158
- package/dist/agent.worker.js +2 -2
- package/dist/{browser-mfOl2gpJ.mjs → browser-DRpAM7mB.mjs} +9204 -9189
- package/dist/demo/App.d.ts.map +1 -1
- package/dist/{git-log-CQBLbIm5.mjs → git-log--I-rJJIH.mjs} +2 -2
- package/dist/{index-Bs5wfOm2.mjs → index-BGjmPMun.mjs} +2 -2
- package/dist/index.js +1889 -1007
- package/dist/lib/components/CodyWebChat.d.ts +43 -0
- package/dist/lib/components/CodyWebChat.d.ts.map +1 -1
- package/dist/lib/index.d.ts +3 -4
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/style.css +439 -219
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/{util-B6KeX3WC.mjs → util-DeyYSaNB.mjs} +1 -1
- package/package.json +17 -15
package/dist/style.css
CHANGED
|
@@ -756,66 +756,74 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
756
756
|
._spin_56lwz_7 {
|
|
757
757
|
animation: _spin_56lwz_7 1.5s steps(30) infinite;
|
|
758
758
|
}
|
|
759
|
-
._error-
|
|
759
|
+
._error-item_17p9z_1 {
|
|
760
760
|
display: flex;
|
|
761
761
|
flex-direction: row;
|
|
762
|
-
gap: 0.
|
|
762
|
+
gap: 0.8rem;
|
|
763
|
+
padding: 10px;
|
|
764
|
+
background: rgba(255, 255, 255, 0.05);
|
|
765
|
+
border-radius: 6px;
|
|
766
|
+
margin: 0px 0px;
|
|
767
|
+
position: relative;
|
|
768
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
763
769
|
}
|
|
764
770
|
|
|
765
|
-
._error-
|
|
771
|
+
._error-item_17p9z_1 ._icon_17p9z_13 {
|
|
766
772
|
font-size: 24px;
|
|
767
773
|
}
|
|
768
774
|
|
|
769
|
-
._error-
|
|
775
|
+
._error-item_17p9z_1 ._body_17p9z_17 {
|
|
770
776
|
display: flex;
|
|
771
777
|
flex-direction: column;
|
|
772
|
-
gap: 0.
|
|
778
|
+
gap: 0.2rem;
|
|
779
|
+
width: 100%;
|
|
773
780
|
}
|
|
774
781
|
|
|
775
|
-
._error-
|
|
782
|
+
._error-item_17p9z_1 vscode-button {
|
|
776
783
|
margin: 0;
|
|
777
784
|
}
|
|
778
785
|
|
|
779
|
-
._error-
|
|
780
|
-
._error-
|
|
786
|
+
._error-item_17p9z_1 h1,
|
|
787
|
+
._error-item_17p9z_1 p {
|
|
781
788
|
margin: 0;
|
|
789
|
+
line-height: 1.15;
|
|
782
790
|
}
|
|
783
791
|
|
|
784
|
-
._error-
|
|
792
|
+
._error-item_17p9z_1 header {
|
|
785
793
|
display: flex;
|
|
786
794
|
flex-direction: column;
|
|
787
|
-
gap: 0.
|
|
788
|
-
|
|
795
|
+
gap: 0.5rem;
|
|
796
|
+
padding-right: 20px;
|
|
797
|
+
margin-top: 0px;
|
|
789
798
|
}
|
|
790
799
|
|
|
791
|
-
._error-
|
|
792
|
-
|
|
793
|
-
font-
|
|
794
|
-
|
|
800
|
+
._error-item_17p9z_1 header h1 {
|
|
801
|
+
font-size: 14px;
|
|
802
|
+
font-weight: 600;
|
|
803
|
+
letter-spacing: 0.3px;
|
|
795
804
|
}
|
|
796
805
|
|
|
797
|
-
._error-
|
|
798
|
-
max-width: 40em;
|
|
806
|
+
._error-item_17p9z_1 header p {
|
|
799
807
|
opacity: 0.9;
|
|
808
|
+
line-height: 1.5;
|
|
800
809
|
}
|
|
801
810
|
|
|
802
|
-
._error-
|
|
803
|
-
|
|
804
|
-
flex-direction: row;
|
|
805
|
-
gap: 8px;
|
|
811
|
+
._error-item_17p9z_1 ._actions_17p9z_53 {
|
|
812
|
+
margin-top: 10px;
|
|
806
813
|
}
|
|
807
814
|
|
|
808
|
-
._error-
|
|
815
|
+
._error-item_17p9z_1 ._retry-message_17p9z_57 {
|
|
809
816
|
font-size: 11px;
|
|
810
817
|
opacity: 0.7;
|
|
811
818
|
}
|
|
812
819
|
|
|
813
|
-
._error-
|
|
820
|
+
._error-item_17p9z_1 ._banner-container_17p9z_62 {
|
|
814
821
|
position: absolute;
|
|
815
822
|
top: 0;
|
|
816
823
|
right: 0;
|
|
817
824
|
overflow: hidden;
|
|
818
825
|
height: 100px;
|
|
826
|
+
z-index: 1000;
|
|
819
827
|
}
|
|
820
828
|
|
|
821
829
|
@property --error-item-reflection-position {
|
|
@@ -824,7 +832,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
824
832
|
initial-value: 0%;
|
|
825
833
|
}
|
|
826
834
|
|
|
827
|
-
._error-
|
|
835
|
+
._error-item_17p9z_1 ._banner_17p9z_62 {
|
|
828
836
|
--error-item-reflection-position: -100%;
|
|
829
837
|
|
|
830
838
|
padding: 6px 30px;
|
|
@@ -850,7 +858,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
850
858
|
cursor: pointer;
|
|
851
859
|
}
|
|
852
860
|
|
|
853
|
-
._error-
|
|
861
|
+
._error-item_17p9z_1 ._banner_17p9z_62:hover {
|
|
854
862
|
--error-item-reflection-position: 100%;
|
|
855
863
|
|
|
856
864
|
transition:
|
|
@@ -861,7 +869,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
861
869
|
0 0 10px 0 rgb(255 255 255 / 35%);
|
|
862
870
|
}
|
|
863
871
|
|
|
864
|
-
._error-
|
|
872
|
+
._error-item_17p9z_1 ._banner_17p9z_62::before {
|
|
865
873
|
content: ' ';
|
|
866
874
|
position: absolute;
|
|
867
875
|
top: 0;
|
|
@@ -872,7 +880,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
872
880
|
background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 80%));
|
|
873
881
|
}
|
|
874
882
|
|
|
875
|
-
._error-
|
|
883
|
+
._error-item_17p9z_1 ._banner_17p9z_62::after {
|
|
876
884
|
content: ' ';
|
|
877
885
|
position: absolute;
|
|
878
886
|
bottom: 0;
|
|
@@ -883,7 +891,7 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
883
891
|
background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 80%));
|
|
884
892
|
}
|
|
885
893
|
|
|
886
|
-
._request-
|
|
894
|
+
._request-error_17p9z_136 {
|
|
887
895
|
background-color: #f7bcbc;
|
|
888
896
|
color: #de3400;
|
|
889
897
|
|
|
@@ -896,10 +904,9 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
896
904
|
border-left: 0.5rem solid #d8000c;
|
|
897
905
|
}
|
|
898
906
|
|
|
899
|
-
._request-error-
|
|
907
|
+
._request-error-title_17p9z_149 {
|
|
900
908
|
font-weight: bold;
|
|
901
|
-
}
|
|
902
|
-
._feedback-buttons_16gni_1 {
|
|
909
|
+
}._feedback-buttons_16gni_1 {
|
|
903
910
|
display: flex;
|
|
904
911
|
flex-direction: row;
|
|
905
912
|
}
|
|
@@ -938,35 +945,49 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
938
945
|
font-weight: inherit;
|
|
939
946
|
}
|
|
940
947
|
|
|
941
|
-
._code-
|
|
942
|
-
._code-
|
|
943
|
-
|
|
944
|
-
|
|
948
|
+
._code-excerpt_1taji_1 .line,
|
|
949
|
+
._code-excerpt_1taji_1 .code {
|
|
950
|
+
height: 16px;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
@media (min-width: 768px) {._code-excerpt_1taji_1 .line,
|
|
954
|
+
._code-excerpt_1taji_1 .code {
|
|
955
|
+
height: 18px;
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
._code-excerpt_1taji_1 .line,
|
|
960
|
+
._code-excerpt_1taji_1 .code {
|
|
961
|
+
|
|
945
962
|
vertical-align: middle;
|
|
946
963
|
padding: 0;
|
|
947
|
-
|
|
948
|
-
._code-
|
|
964
|
+
}
|
|
965
|
+
._code-excerpt_1taji_1 .line {
|
|
949
966
|
min-width: 1.5rem;
|
|
950
967
|
text-align: right;
|
|
951
968
|
user-select: none;
|
|
969
|
+
cursor: pointer;
|
|
952
970
|
}
|
|
953
|
-
._code-
|
|
971
|
+
._code-excerpt_1taji_1 .line:hover {
|
|
972
|
+
text-decoration: none;
|
|
973
|
+
}
|
|
974
|
+
._code-excerpt_1taji_1 .line::before {
|
|
954
975
|
/* draw line number with css so it cannot be copied to clipboard */
|
|
955
976
|
content: attr(data-line);
|
|
956
977
|
color: var(--cody-chat-code-text-muted);
|
|
957
978
|
}
|
|
958
|
-
._code-
|
|
979
|
+
._code-excerpt_1taji_1 .code {
|
|
959
980
|
white-space: pre;
|
|
960
981
|
padding-left: 1rem;
|
|
961
982
|
}
|
|
962
|
-
._code-excerpt-
|
|
983
|
+
._code-excerpt-error_1taji_1 {
|
|
963
984
|
width: 100%;
|
|
964
985
|
}
|
|
965
|
-
._code-excerpt-
|
|
986
|
+
._code-excerpt-alert_1taji_1 {
|
|
966
987
|
margin-bottom: 0;
|
|
967
988
|
color: #c92a2a;
|
|
968
989
|
}
|
|
969
|
-
._code-
|
|
990
|
+
._code-excerpt_1taji_1 .hl-text {
|
|
970
991
|
color: #657b83;
|
|
971
992
|
}
|
|
972
993
|
:root {
|
|
@@ -980,16 +1001,16 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
980
1001
|
--cody-chat-code-text-highlighted: #566880;
|
|
981
1002
|
}
|
|
982
1003
|
|
|
983
|
-
._result-
|
|
1004
|
+
._result-container_16we1_12 {
|
|
984
1005
|
contain: paint;
|
|
985
1006
|
}
|
|
986
1007
|
|
|
987
|
-
._result-
|
|
1008
|
+
._result-container_16we1_12 .match-highlight {
|
|
988
1009
|
color: var(--cody-chat-code-text-highlighted);
|
|
989
1010
|
background-color: var(--cody-chat-code-mark-background) !important;
|
|
990
1011
|
}
|
|
991
1012
|
|
|
992
|
-
._result-
|
|
1013
|
+
._result-container_16we1_12 .sr-only {
|
|
993
1014
|
position: absolute;
|
|
994
1015
|
width: 0.0625rem;
|
|
995
1016
|
height: 0.0625rem;
|
|
@@ -1001,35 +1022,31 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1001
1022
|
border: 0;
|
|
1002
1023
|
}
|
|
1003
1024
|
|
|
1004
|
-
.
|
|
1005
|
-
|
|
1006
|
-
display: flex;
|
|
1007
|
-
align-items: center;
|
|
1025
|
+
._header_16we1_32 {
|
|
1026
|
+
background-color: var(--vscode-editor-background);
|
|
1008
1027
|
position: sticky;
|
|
1009
1028
|
top: 0;
|
|
1029
|
+
border-bottom: solid 1px var(--cody-chat-code-border-color);
|
|
1010
1030
|
|
|
1011
1031
|
/* Show on top of search result contents */
|
|
1012
1032
|
z-index: 1;
|
|
1013
|
-
background-color: var(--cody-chat-code-header-background);
|
|
1014
1033
|
}
|
|
1015
1034
|
|
|
1016
|
-
._header-
|
|
1035
|
+
._header-title_16we1_1 {
|
|
1017
1036
|
flex: 1 1 auto;
|
|
1018
1037
|
display: flex;
|
|
1019
1038
|
flex-wrap: wrap;
|
|
1020
1039
|
}
|
|
1021
1040
|
|
|
1022
|
-
.
|
|
1023
|
-
border-
|
|
1024
|
-
border: solid 1px var(--cody-chat-code-border-color);
|
|
1025
|
-
background-color: var(--cody-chat-code-background);
|
|
1041
|
+
._result_16we1_12 {
|
|
1042
|
+
border-bottom: solid 1px var(--cody-chat-code-border-color);
|
|
1026
1043
|
}
|
|
1027
1044
|
|
|
1028
|
-
.
|
|
1045
|
+
._result_16we1_12 code {
|
|
1029
1046
|
padding: 0 !important;
|
|
1030
1047
|
}
|
|
1031
1048
|
|
|
1032
|
-
._search-result-
|
|
1049
|
+
._search-result-match_16we1_56 {
|
|
1033
1050
|
/* Don't use cascading link style */
|
|
1034
1051
|
text-decoration: none;
|
|
1035
1052
|
display: flex;
|
|
@@ -1039,23 +1056,23 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1039
1056
|
position: relative;
|
|
1040
1057
|
}
|
|
1041
1058
|
|
|
1042
|
-
._horizontal-divider-
|
|
1059
|
+
._horizontal-divider-between_16we1_66:not(:last-child) {
|
|
1043
1060
|
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
1044
1061
|
}
|
|
1045
1062
|
|
|
1046
|
-
._focusable-
|
|
1063
|
+
._focusable-block_16we1_72:focus-visible {
|
|
1047
1064
|
box-shadow: inset 0 0 0 1px var(--cody-chat-code-focus-border);
|
|
1048
1065
|
}
|
|
1049
1066
|
|
|
1050
|
-
.
|
|
1067
|
+
._clickable_16we1_78 {
|
|
1051
1068
|
cursor: pointer;
|
|
1052
1069
|
}
|
|
1053
1070
|
|
|
1054
|
-
.
|
|
1071
|
+
._clickable_16we1_78:hover {
|
|
1055
1072
|
text-decoration: none;
|
|
1056
1073
|
}
|
|
1057
1074
|
|
|
1058
|
-
._divider-
|
|
1075
|
+
._divider-between_16we1_85 > *:not(:last-child)::after {
|
|
1059
1076
|
content: ' ';
|
|
1060
1077
|
height: 1rem;
|
|
1061
1078
|
margin: 0 0.75rem;
|
|
@@ -1063,19 +1080,19 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1063
1080
|
display: block;
|
|
1064
1081
|
}
|
|
1065
1082
|
|
|
1066
|
-
._divider-
|
|
1083
|
+
._divider-vertical_16we1_95 {
|
|
1067
1084
|
border-bottom: 1px solid var(--cody-chat-code-border-color);
|
|
1068
1085
|
width: 100%;
|
|
1069
1086
|
margin: 0.5rem 0;
|
|
1070
1087
|
}
|
|
1071
1088
|
|
|
1072
|
-
.
|
|
1089
|
+
._divider_16we1_85 {
|
|
1073
1090
|
border-right: 1px solid var(--cody-chat-code-border-color);
|
|
1074
1091
|
height: 1rem;
|
|
1075
1092
|
margin: 0 0.5rem;
|
|
1076
1093
|
}
|
|
1077
1094
|
|
|
1078
|
-
.
|
|
1095
|
+
._title_16we1_107 {
|
|
1079
1096
|
display: flex;
|
|
1080
1097
|
align-items: center;
|
|
1081
1098
|
flex-grow: 1;
|
|
@@ -1083,37 +1100,39 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1083
1100
|
flex-wrap: wrap;
|
|
1084
1101
|
}
|
|
1085
1102
|
|
|
1086
|
-
._title-
|
|
1103
|
+
._title-inner_16we1_115 {
|
|
1087
1104
|
overflow-wrap: anywhere;
|
|
1088
1105
|
}
|
|
1089
1106
|
|
|
1090
|
-
._toggle-matches-
|
|
1107
|
+
._toggle-matches-button_16we1_119 {
|
|
1091
1108
|
width: 100%;
|
|
1092
1109
|
text-align: left;
|
|
1093
1110
|
border: none;
|
|
1094
1111
|
padding: 0.25rem 0.5rem;
|
|
1095
1112
|
border-top: 1px solid var(--cody-chat-code-border-color);
|
|
1096
|
-
background-color: var(--cody-chat-code-background);
|
|
1097
1113
|
color: var(--cody-chat-code-text-muted);
|
|
1114
|
+
font-size: calc(calc(12/13)*var(--vscode-font-size));
|
|
1098
1115
|
}
|
|
1099
1116
|
|
|
1100
|
-
._toggle-matches-
|
|
1117
|
+
._toggle-matches-button_16we1_119:hover {
|
|
1101
1118
|
color: inherit;
|
|
1102
1119
|
}
|
|
1103
1120
|
|
|
1104
|
-
._toggle-matches-button--
|
|
1121
|
+
._toggle-matches-button--expanded_16we1_1 {
|
|
1105
1122
|
position: sticky;
|
|
1106
1123
|
bottom: 0;
|
|
1107
1124
|
}
|
|
1108
1125
|
|
|
1109
|
-
._toggle-matches-button-
|
|
1126
|
+
._toggle-matches-button-text_16we1_1 {
|
|
1110
1127
|
margin-left: 0.125rem;
|
|
1111
1128
|
}
|
|
1112
1129
|
|
|
1113
|
-
.
|
|
1130
|
+
._addToContextLabel_16we1_142 {
|
|
1131
|
+
color: var(--cody-chat-code-text-muted);
|
|
1132
|
+
}
|
|
1133
|
+
._chunk_qvvv3_1 {
|
|
1114
1134
|
position: relative;
|
|
1115
1135
|
overflow-x: auto;
|
|
1116
|
-
background-color: var(--code-background);
|
|
1117
1136
|
}
|
|
1118
1137
|
._info-message_1hay9_1 {
|
|
1119
1138
|
--mention-color-opacity: 70%;
|
|
@@ -1132,74 +1151,72 @@ body[data-vscode-theme-kind='vscode-light'] ._content_1kf9a_116 pre > code {
|
|
|
1132
1151
|
);
|
|
1133
1152
|
word-break: break-word;
|
|
1134
1153
|
}
|
|
1135
|
-
.
|
|
1154
|
+
._filter_1pc5b_1 {
|
|
1136
1155
|
background-color: var(--vscode-sidebar-background);
|
|
1137
1156
|
color: var(--vscode-input-foreground);
|
|
1138
1157
|
}
|
|
1139
1158
|
|
|
1140
|
-
.
|
|
1159
|
+
._filter_1pc5b_1._selected_1pc5b_5, ._filter_1pc5b_1._selected_1pc5b_5:hover {
|
|
1141
1160
|
background-color: var(--vscode-button-background);
|
|
1142
1161
|
color: var(--vscode-button-foreground);
|
|
1143
1162
|
}
|
|
1163
|
+
/* Hidden by default */
|
|
1164
|
+
._filters-sidebar_oa6b9_2 {
|
|
1165
|
+
display: none;
|
|
1166
|
+
}
|
|
1144
1167
|
|
|
1145
|
-
|
|
1146
|
-
|
|
1168
|
+
@media (min-width: 768px) { /* md breakpoint */
|
|
1169
|
+
._filters-sidebar_oa6b9_2 {
|
|
1170
|
+
display: block; /* Show at md breakpoint and above */
|
|
1147
1171
|
}
|
|
1148
|
-
._root_fzfjq_1 {
|
|
1149
|
-
container-type: inline-size;
|
|
1150
|
-
container-name: root-outer-container;
|
|
1151
1172
|
}
|
|
1152
1173
|
|
|
1153
|
-
.
|
|
1154
|
-
|
|
1155
|
-
|
|
1174
|
+
._root_oa6b9_12 {
|
|
1175
|
+
container-type: inline-size;
|
|
1176
|
+
-webkit-container-type: inline-size;
|
|
1177
|
+
container-name: root-outer-container;
|
|
1178
|
+
-webkit-container-name: root-outer-container;}
|
|
1156
1179
|
|
|
1157
|
-
._results-
|
|
1180
|
+
._root_oa6b9_12 ._results-container_oa6b9_18 {
|
|
1158
1181
|
max-width: 100%;
|
|
1159
1182
|
}
|
|
1160
1183
|
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
display: none !important;
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
._container_fzfjq_20 {
|
|
1168
|
-
display: block !important;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
._results-container_fzfjq_6 {
|
|
1172
|
-
max-width: 100% !important;
|
|
1173
|
-
}
|
|
1174
|
-
}
|
|
1184
|
+
._root_oa6b9_12 ._results-container_oa6b9_18._filters-sidebar-hidden_oa6b9_21 {
|
|
1185
|
+
max-width: 100%;
|
|
1186
|
+
}
|
|
1175
1187
|
|
|
1176
|
-
@
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1188
|
+
@supports (container-type: inline-size) {
|
|
1189
|
+
@container root-outer-container (max-width: 768px) {
|
|
1190
|
+
._root_oa6b9_12 ._results-container_oa6b9_18 ._filters-sidebar_oa6b9_2,
|
|
1191
|
+
._root_oa6b9_12 ._results-container_oa6b9_18 ._filters-sidebar-toggle_oa6b9_28 {
|
|
1192
|
+
display: none !important;
|
|
1193
|
+
}
|
|
1194
|
+
}
|
|
1181
1195
|
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1196
|
+
@container root-outer-container (min-width: 768px) {
|
|
1197
|
+
._root_oa6b9_12 ._results-container_oa6b9_18 ._filters-modal-trigger_oa6b9_34 {
|
|
1198
|
+
display: none !important;
|
|
1199
|
+
}
|
|
1200
|
+
} }
|
|
1185
1201
|
|
|
1186
|
-
._filters-
|
|
1187
|
-
|
|
1188
|
-
}
|
|
1202
|
+
._filters-sidebar_oa6b9_2 ._root_oa6b9_12 ._results-container_oa6b9_18._root_oa6b9_12 ._results-container_oa6b9_18 ._results-container_oa6b9_18 {
|
|
1203
|
+
transition: all 1s ease-in;
|
|
1204
|
+
}
|
|
1189
1205
|
|
|
1190
|
-
._search-results-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1206
|
+
._root_oa6b9_12 ._results-container_oa6b9_18 ._search-results-header_oa6b9_43 {
|
|
1207
|
+
container-type: inline-size;
|
|
1208
|
+
-webkit-container-type: inline-size;
|
|
1209
|
+
container-name: search-results-header;
|
|
1210
|
+
-webkit-container-name: search-results-header;
|
|
1211
|
+
}
|
|
1194
1212
|
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
}
|
|
1213
|
+
@supports (container-type: inline-size) {
|
|
1214
|
+
@container search-results-header (width < 468px) {
|
|
1215
|
+
._root_oa6b9_12 ._results-container_oa6b9_18 ._search-results-header-label_oa6b9_52 {
|
|
1216
|
+
display: none;
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1203
1220
|
._step-container_1xbw7_1 {
|
|
1204
1221
|
border-left: 3px solid var(--vscode-sideBar-border);
|
|
1205
1222
|
padding: 0.25rem 0.5rem 0.25rem 0.5rem;
|
|
@@ -1385,19 +1402,19 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1385
1402
|
}
|
|
1386
1403
|
|
|
1387
1404
|
|
|
1388
|
-
.
|
|
1405
|
+
._list_mvyfp_2 {
|
|
1389
1406
|
outline: none;
|
|
1390
1407
|
max-height: unset !important;
|
|
1391
1408
|
background-color: transparent !important;
|
|
1392
1409
|
}
|
|
1393
1410
|
|
|
1394
|
-
._list--input-
|
|
1411
|
+
._list--input-container_mvyfp_1 {
|
|
1395
1412
|
top: 0;
|
|
1396
1413
|
position: sticky;
|
|
1397
1414
|
z-index: 1;
|
|
1398
1415
|
}
|
|
1399
1416
|
|
|
1400
|
-
._list--
|
|
1417
|
+
._list--input_mvyfp_1 {
|
|
1401
1418
|
margin: 0.5rem;
|
|
1402
1419
|
padding: 0.5rem;
|
|
1403
1420
|
border-radius: 3px;
|
|
@@ -1405,27 +1422,38 @@ body[data-vscode-theme-kind='vscode-high-contrast-light'] ._context-item-link_1q
|
|
|
1405
1422
|
color: var(--vscode-input-foreground);
|
|
1406
1423
|
}
|
|
1407
1424
|
|
|
1408
|
-
._list--
|
|
1425
|
+
._list--input_mvyfp_1:focus {
|
|
1409
1426
|
box-shadow: 0 0 0 0.125rem var(--vscode-focusBorder)
|
|
1410
1427
|
}
|
|
1411
1428
|
|
|
1412
|
-
._list-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1429
|
+
._list-chips_mvyfp_1 {
|
|
1430
|
+
--gap: 0.5rem;
|
|
1431
|
+
--min-width: 240px;
|
|
1432
|
+
--max-width: calc(50% - (var(--gap)/2));
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
._list-chips_mvyfp_1 [cmdk-list-sizer] {
|
|
1436
|
+
display: grid;
|
|
1437
|
+
/*
|
|
1438
|
+
* This creates a responsive grid with one or two columns, depending on the available space.
|
|
1439
|
+
* See https://css-tricks.com/an-auto-filling-css-grid-with-max-columns/ for more information.
|
|
1440
|
+
*/
|
|
1441
|
+
grid-template-columns: repeat(auto-fill, minmax(max(var(--min-width), var(--max-width)), 1fr));
|
|
1442
|
+
gap: var(--gap);
|
|
1443
|
+
|
|
1416
1444
|
}
|
|
1417
1445
|
|
|
1418
|
-
._list-
|
|
1446
|
+
._list-chips_mvyfp_1 ._list--item_mvyfp_41 {
|
|
1419
1447
|
border-radius: 3px;
|
|
1420
1448
|
border: 1px solid var(--vscode-dropdown-border, transparent);
|
|
1421
1449
|
padding: 0.25rem 0.5rem;
|
|
1422
1450
|
}
|
|
1423
1451
|
|
|
1424
|
-
._list-
|
|
1452
|
+
._list-chips_mvyfp_1 ._list--item_mvyfp_41[aria-selected="true"] {
|
|
1425
1453
|
border-color: var(--vscode-list-activeSelectionBackground);
|
|
1426
1454
|
}
|
|
1427
1455
|
|
|
1428
|
-
._list-
|
|
1456
|
+
._list-chips_mvyfp_1 ._list--item_mvyfp_41:not([aria-selected="true"]) {
|
|
1429
1457
|
background-color: var(--vscode-dropdown-background);
|
|
1430
1458
|
}
|
|
1431
1459
|
|
|
@@ -1844,6 +1872,9 @@ button > ._model-title-with-icon_k71kd_5 ._badge_k71kd_39 {
|
|
|
1844
1872
|
justify-content: flex-end;
|
|
1845
1873
|
gap: 0.5rem;
|
|
1846
1874
|
}
|
|
1875
|
+
._switch-thumb_1n9d7_1[data-state='checked'] {
|
|
1876
|
+
transform: translateX(10px);
|
|
1877
|
+
}
|
|
1847
1878
|
._chat-disabled_rc7no_1 {
|
|
1848
1879
|
text-align: center;
|
|
1849
1880
|
padding: 0.5rem 0.25rem;
|
|
@@ -1851,31 +1882,74 @@ button > ._model-title-with-icon_k71kd_5 ._badge_k71kd_39 {
|
|
|
1851
1882
|
border-bottom: solid 1px var(--vscode-inputValidation-errorBorder);
|
|
1852
1883
|
color: var(--vscode-foreground);
|
|
1853
1884
|
}
|
|
1854
|
-
._welcome-
|
|
1855
|
-
padding: 1rem
|
|
1885
|
+
._welcome-footer_1o9k6_1 {
|
|
1886
|
+
padding: 1rem;
|
|
1856
1887
|
display: flex;
|
|
1857
1888
|
flex-flow: column nowrap;
|
|
1858
1889
|
max-width: 100%;
|
|
1859
1890
|
color: var(--vscode-input-placeholderForeground)
|
|
1860
1891
|
}
|
|
1861
1892
|
|
|
1862
|
-
.
|
|
1893
|
+
._cheatsheet_1o9k6_9 {
|
|
1863
1894
|
display: flex;
|
|
1864
1895
|
flex-flow: column nowrap;
|
|
1865
1896
|
width: 100%;
|
|
1866
1897
|
gap: 0.5rem;
|
|
1867
1898
|
padding: 1rem 0;
|
|
1868
|
-
border-bottom: 0.25px solid var(--vscode-dropdown-border);
|
|
1869
1899
|
}
|
|
1870
1900
|
|
|
1871
|
-
.
|
|
1901
|
+
._title_1o9k6_17 {
|
|
1902
|
+
display: flex;
|
|
1903
|
+
flex-flow: row nowrap;
|
|
1904
|
+
align-items: center;
|
|
1905
|
+
font-weight: 500;
|
|
1906
|
+
gap: 0.5rem;
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
._examples_1o9k6_25 {
|
|
1872
1910
|
display: flex;
|
|
1873
1911
|
flex-flow: row wrap;
|
|
1874
|
-
|
|
1912
|
+
gap: 0.25rem 1rem;
|
|
1913
|
+
padding: 0 0.5rem;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
._example_1o9k6_25 {
|
|
1917
|
+
display: flex;
|
|
1918
|
+
flex-flow: column nowrap;
|
|
1919
|
+
align-items: flex-start;
|
|
1920
|
+
gap: 0.25rem;
|
|
1921
|
+
padding: 0.25rem 0;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
._example-input_1o9k6_40 {
|
|
1925
|
+
display: flex;
|
|
1926
|
+
flex-flow: row wrap;
|
|
1927
|
+
border-radius: 4px;
|
|
1928
|
+
color: var(--vscode-input-foreground);
|
|
1929
|
+
border: 1px solid var(--vscode-button-secondaryBackground);
|
|
1930
|
+
background-color: var(--vscode-editor-background);
|
|
1931
|
+
font-family: var(--vscode-editor-font-family);
|
|
1932
|
+
font-size: var(--vscode-editor-font-size);
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
._tips_1o9k6_51 {
|
|
1936
|
+
display: flex;
|
|
1937
|
+
flex-flow: column nowrap;
|
|
1938
|
+
width: 100%;
|
|
1875
1939
|
gap: 0.5rem;
|
|
1940
|
+
padding: 1rem 0;
|
|
1876
1941
|
}
|
|
1877
1942
|
|
|
1878
|
-
.
|
|
1943
|
+
._links_1o9k6_59 {
|
|
1944
|
+
display: flex;
|
|
1945
|
+
flex-flow: row wrap;
|
|
1946
|
+
justify-content: center;
|
|
1947
|
+
padding: 1rem 0;
|
|
1948
|
+
gap: 1.25rem;
|
|
1949
|
+
border-top: 0.5px solid var(--vscode-button-secondaryBackground);
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
._item_1o9k6_68 {
|
|
1879
1953
|
display: flex;
|
|
1880
1954
|
flex-flow: row nowrap;
|
|
1881
1955
|
flex-shrink: 0;
|
|
@@ -1884,7 +1958,7 @@ button > ._model-title-with-icon_k71kd_5 ._badge_k71kd_39 {
|
|
|
1884
1958
|
align-items: center;
|
|
1885
1959
|
}
|
|
1886
1960
|
|
|
1887
|
-
.
|
|
1961
|
+
._link_1o9k6_59 {
|
|
1888
1962
|
color: inherit;
|
|
1889
1963
|
text-decoration: none;
|
|
1890
1964
|
}
|
|
@@ -2504,6 +2578,12 @@ imported in Sourcegraph shell.
|
|
|
2504
2578
|
since they will conflict with any possible reset/global
|
|
2505
2579
|
styles in consumer. See @mixin reset-styles for more details
|
|
2506
2580
|
*/
|
|
2581
|
+
.tw-pointer-events-none {
|
|
2582
|
+
pointer-events: none;
|
|
2583
|
+
}
|
|
2584
|
+
.tw-fixed {
|
|
2585
|
+
position: fixed;
|
|
2586
|
+
}
|
|
2507
2587
|
.tw-absolute {
|
|
2508
2588
|
position: absolute;
|
|
2509
2589
|
}
|
|
@@ -2513,6 +2593,9 @@ imported in Sourcegraph shell.
|
|
|
2513
2593
|
.tw-sticky {
|
|
2514
2594
|
position: sticky;
|
|
2515
2595
|
}
|
|
2596
|
+
.tw-inset-0 {
|
|
2597
|
+
inset: 0px;
|
|
2598
|
+
}
|
|
2516
2599
|
.tw-bottom-0 {
|
|
2517
2600
|
bottom: 0px;
|
|
2518
2601
|
}
|
|
@@ -2522,21 +2605,15 @@ imported in Sourcegraph shell.
|
|
|
2522
2605
|
.tw-left-1\/2 {
|
|
2523
2606
|
left: 50%;
|
|
2524
2607
|
}
|
|
2525
|
-
.tw-left-\[0px\] {
|
|
2526
|
-
left: 0px;
|
|
2527
|
-
}
|
|
2528
|
-
.tw-left-\[5\.5px\] {
|
|
2529
|
-
left: 5.5px;
|
|
2530
|
-
}
|
|
2531
2608
|
.tw-right-2 {
|
|
2532
2609
|
right: 4px;
|
|
2533
2610
|
}
|
|
2534
|
-
.tw-right-4 {
|
|
2535
|
-
right: 8px;
|
|
2536
|
-
}
|
|
2537
2611
|
.tw-right-6 {
|
|
2538
2612
|
right: 12px;
|
|
2539
2613
|
}
|
|
2614
|
+
.tw-right-8 {
|
|
2615
|
+
right: 16px;
|
|
2616
|
+
}
|
|
2540
2617
|
.tw-top-10 {
|
|
2541
2618
|
top: 20px;
|
|
2542
2619
|
}
|
|
@@ -2546,17 +2623,14 @@ imported in Sourcegraph shell.
|
|
|
2546
2623
|
.tw-top-3 {
|
|
2547
2624
|
top: 6px;
|
|
2548
2625
|
}
|
|
2549
|
-
.tw-top-
|
|
2550
|
-
top:
|
|
2626
|
+
.tw-top-5 {
|
|
2627
|
+
top: 10px;
|
|
2551
2628
|
}
|
|
2552
2629
|
.tw-top-6 {
|
|
2553
2630
|
top: 12px;
|
|
2554
2631
|
}
|
|
2555
|
-
.tw-
|
|
2556
|
-
|
|
2557
|
-
}
|
|
2558
|
-
.tw-top-\[5\.5px\] {
|
|
2559
|
-
top: 5.5px;
|
|
2632
|
+
.tw-z-10 {
|
|
2633
|
+
z-index: 10;
|
|
2560
2634
|
}
|
|
2561
2635
|
.tw-z-50 {
|
|
2562
2636
|
z-index: 50;
|
|
@@ -2574,6 +2648,14 @@ imported in Sourcegraph shell.
|
|
|
2574
2648
|
margin-left: 4px;
|
|
2575
2649
|
margin-right: 4px;
|
|
2576
2650
|
}
|
|
2651
|
+
.tw-mx-8 {
|
|
2652
|
+
margin-left: 16px;
|
|
2653
|
+
margin-right: 16px;
|
|
2654
|
+
}
|
|
2655
|
+
.tw-mx-auto {
|
|
2656
|
+
margin-left: auto;
|
|
2657
|
+
margin-right: auto;
|
|
2658
|
+
}
|
|
2577
2659
|
.tw-my-2 {
|
|
2578
2660
|
margin-top: 4px;
|
|
2579
2661
|
margin-bottom: 4px;
|
|
@@ -2626,9 +2708,6 @@ imported in Sourcegraph shell.
|
|
|
2626
2708
|
.tw-ml-4 {
|
|
2627
2709
|
margin-left: 8px;
|
|
2628
2710
|
}
|
|
2629
|
-
.tw-ml-5 {
|
|
2630
|
-
margin-left: 10px;
|
|
2631
|
-
}
|
|
2632
2711
|
.tw-ml-6 {
|
|
2633
2712
|
margin-left: 12px;
|
|
2634
2713
|
}
|
|
@@ -2686,17 +2765,17 @@ imported in Sourcegraph shell.
|
|
|
2686
2765
|
.tw-mt-auto {
|
|
2687
2766
|
margin-top: auto;
|
|
2688
2767
|
}
|
|
2768
|
+
.tw-box-content {
|
|
2769
|
+
box-sizing: content-box;
|
|
2770
|
+
}
|
|
2689
2771
|
.\!tw-line-clamp-1 {
|
|
2690
2772
|
overflow: hidden !important;
|
|
2691
2773
|
display: -webkit-box !important;
|
|
2692
2774
|
-webkit-box-orient: vertical !important;
|
|
2693
2775
|
-webkit-line-clamp: 1 !important;
|
|
2694
2776
|
}
|
|
2695
|
-
.tw-
|
|
2696
|
-
|
|
2697
|
-
display: -webkit-box;
|
|
2698
|
-
-webkit-box-orient: vertical;
|
|
2699
|
-
-webkit-line-clamp: 1;
|
|
2777
|
+
.tw-block {
|
|
2778
|
+
display: block;
|
|
2700
2779
|
}
|
|
2701
2780
|
.tw-inline-block {
|
|
2702
2781
|
display: inline-block;
|
|
@@ -2710,10 +2789,21 @@ imported in Sourcegraph shell.
|
|
|
2710
2789
|
.tw-grid {
|
|
2711
2790
|
display: grid;
|
|
2712
2791
|
}
|
|
2792
|
+
.tw-size-4 {
|
|
2793
|
+
width: 8px;
|
|
2794
|
+
height: 8px;
|
|
2795
|
+
}
|
|
2796
|
+
.tw-size-6 {
|
|
2797
|
+
width: 12px;
|
|
2798
|
+
height: 12px;
|
|
2799
|
+
}
|
|
2713
2800
|
.tw-size-8 {
|
|
2714
2801
|
width: 16px;
|
|
2715
2802
|
height: 16px;
|
|
2716
2803
|
}
|
|
2804
|
+
.\!tw-h-14 {
|
|
2805
|
+
height: 28px !important;
|
|
2806
|
+
}
|
|
2717
2807
|
.\!tw-h-\[30px\] {
|
|
2718
2808
|
height: 30px !important;
|
|
2719
2809
|
}
|
|
@@ -2735,21 +2825,12 @@ imported in Sourcegraph shell.
|
|
|
2735
2825
|
.tw-h-\[16px\] {
|
|
2736
2826
|
height: 16px;
|
|
2737
2827
|
}
|
|
2738
|
-
.tw-h-\[18px\] {
|
|
2739
|
-
height: 18px;
|
|
2740
|
-
}
|
|
2741
2828
|
.tw-h-\[1em\] {
|
|
2742
2829
|
height: 1em;
|
|
2743
2830
|
}
|
|
2744
|
-
.tw-h-\[20px\] {
|
|
2745
|
-
height: 20px;
|
|
2746
|
-
}
|
|
2747
2831
|
.tw-h-\[50vh\] {
|
|
2748
2832
|
height: 50vh;
|
|
2749
2833
|
}
|
|
2750
|
-
.tw-h-\[7px\] {
|
|
2751
|
-
height: 7px;
|
|
2752
|
-
}
|
|
2753
2834
|
.tw-h-auto {
|
|
2754
2835
|
height: auto;
|
|
2755
2836
|
}
|
|
@@ -2765,9 +2846,15 @@ imported in Sourcegraph shell.
|
|
|
2765
2846
|
.\!tw-max-h-\[unset\] {
|
|
2766
2847
|
max-height: unset !important;
|
|
2767
2848
|
}
|
|
2849
|
+
.tw-max-h-0 {
|
|
2850
|
+
max-height: 0px;
|
|
2851
|
+
}
|
|
2768
2852
|
.tw-max-h-9 {
|
|
2769
2853
|
max-height: 2.25rem;
|
|
2770
2854
|
}
|
|
2855
|
+
.tw-max-h-\[1000px\] {
|
|
2856
|
+
max-height: 1000px;
|
|
2857
|
+
}
|
|
2771
2858
|
.tw-max-h-\[200px\] {
|
|
2772
2859
|
max-height: 200px;
|
|
2773
2860
|
}
|
|
@@ -2783,6 +2870,9 @@ imported in Sourcegraph shell.
|
|
|
2783
2870
|
.tw-max-h-\[80vh\] {
|
|
2784
2871
|
max-height: 80vh;
|
|
2785
2872
|
}
|
|
2873
|
+
.tw-max-h-\[90vh\] {
|
|
2874
|
+
max-height: 90vh;
|
|
2875
|
+
}
|
|
2786
2876
|
.tw-max-h-fit {
|
|
2787
2877
|
max-height: fit-content;
|
|
2788
2878
|
}
|
|
@@ -2798,9 +2888,15 @@ imported in Sourcegraph shell.
|
|
|
2798
2888
|
.tw-w-11 {
|
|
2799
2889
|
width: 22px;
|
|
2800
2890
|
}
|
|
2891
|
+
.tw-w-14 {
|
|
2892
|
+
width: 28px;
|
|
2893
|
+
}
|
|
2801
2894
|
.tw-w-5 {
|
|
2802
2895
|
width: 10px;
|
|
2803
2896
|
}
|
|
2897
|
+
.tw-w-6 {
|
|
2898
|
+
width: 12px;
|
|
2899
|
+
}
|
|
2804
2900
|
.tw-w-72 {
|
|
2805
2901
|
width: 18rem;
|
|
2806
2902
|
}
|
|
@@ -2816,15 +2912,9 @@ imported in Sourcegraph shell.
|
|
|
2816
2912
|
.tw-w-\[16px\] {
|
|
2817
2913
|
width: 16px;
|
|
2818
2914
|
}
|
|
2819
|
-
.tw-w-\[18px\] {
|
|
2820
|
-
width: 18px;
|
|
2821
|
-
}
|
|
2822
2915
|
.tw-w-\[1em\] {
|
|
2823
2916
|
width: 1em;
|
|
2824
2917
|
}
|
|
2825
|
-
.tw-w-\[20px\] {
|
|
2826
|
-
width: 20px;
|
|
2827
|
-
}
|
|
2828
2918
|
.tw-w-\[240px\] {
|
|
2829
2919
|
width: 240px;
|
|
2830
2920
|
}
|
|
@@ -2837,9 +2927,6 @@ imported in Sourcegraph shell.
|
|
|
2837
2927
|
.tw-w-\[75vw\] {
|
|
2838
2928
|
width: 75vw;
|
|
2839
2929
|
}
|
|
2840
|
-
.tw-w-\[7px\] {
|
|
2841
|
-
width: 7px;
|
|
2842
|
-
}
|
|
2843
2930
|
.tw-w-\[95\%\] {
|
|
2844
2931
|
width: 95%;
|
|
2845
2932
|
}
|
|
@@ -2870,12 +2957,21 @@ imported in Sourcegraph shell.
|
|
|
2870
2957
|
.\!tw-max-w-\[unset\] {
|
|
2871
2958
|
max-width: unset !important;
|
|
2872
2959
|
}
|
|
2960
|
+
.tw-max-w-2xl {
|
|
2961
|
+
max-width: 42rem;
|
|
2962
|
+
}
|
|
2963
|
+
.tw-max-w-3xl {
|
|
2964
|
+
max-width: 48rem;
|
|
2965
|
+
}
|
|
2873
2966
|
.tw-max-w-72 {
|
|
2874
2967
|
max-width: 18rem;
|
|
2875
2968
|
}
|
|
2876
2969
|
.tw-max-w-\[550px\] {
|
|
2877
2970
|
max-width: 550px;
|
|
2878
2971
|
}
|
|
2972
|
+
.tw-max-w-\[768px\] {
|
|
2973
|
+
max-width: 768px;
|
|
2974
|
+
}
|
|
2879
2975
|
.tw-max-w-\[90\%\] {
|
|
2880
2976
|
max-width: 90%;
|
|
2881
2977
|
}
|
|
@@ -2906,6 +3002,9 @@ imported in Sourcegraph shell.
|
|
|
2906
3002
|
.tw-flex-grow {
|
|
2907
3003
|
flex-grow: 1;
|
|
2908
3004
|
}
|
|
3005
|
+
.tw-grow {
|
|
3006
|
+
flex-grow: 1;
|
|
3007
|
+
}
|
|
2909
3008
|
.tw-basis-0 {
|
|
2910
3009
|
flex-basis: 0px;
|
|
2911
3010
|
}
|
|
@@ -2925,10 +3024,6 @@ imported in Sourcegraph shell.
|
|
|
2925
3024
|
--tw-translate-x: 12px;
|
|
2926
3025
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2927
3026
|
}
|
|
2928
|
-
.tw-translate-x-\[1px\] {
|
|
2929
|
-
--tw-translate-x: 1px;
|
|
2930
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2931
|
-
}
|
|
2932
3027
|
.tw-translate-y-\[1px\] {
|
|
2933
3028
|
--tw-translate-y: 1px;
|
|
2934
3029
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -2936,6 +3031,12 @@ imported in Sourcegraph shell.
|
|
|
2936
3031
|
.tw-transform {
|
|
2937
3032
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2938
3033
|
}
|
|
3034
|
+
.tw-animate-\[fadeIn_0\.2s_ease-in-out\] {
|
|
3035
|
+
animation: fadeIn 0.2s ease-in-out;
|
|
3036
|
+
}
|
|
3037
|
+
.tw-animate-\[slideUp_0\.2s_ease-in-out\] {
|
|
3038
|
+
animation: slideUp 0.2s ease-in-out;
|
|
3039
|
+
}
|
|
2939
3040
|
@keyframes tw-spin {
|
|
2940
3041
|
to {
|
|
2941
3042
|
transform: rotate(360deg);
|
|
@@ -3104,9 +3205,6 @@ imported in Sourcegraph shell.
|
|
|
3104
3205
|
.tw-rounded {
|
|
3105
3206
|
border-radius: 0.25rem;
|
|
3106
3207
|
}
|
|
3107
|
-
.tw-rounded-\[0\.5px\] {
|
|
3108
|
-
border-radius: 0.5px;
|
|
3109
|
-
}
|
|
3110
3208
|
.tw-rounded-\[6px\] {
|
|
3111
3209
|
border-radius: 6px;
|
|
3112
3210
|
}
|
|
@@ -3122,18 +3220,33 @@ imported in Sourcegraph shell.
|
|
|
3122
3220
|
.tw-rounded-sm {
|
|
3123
3221
|
border-radius: 2px;
|
|
3124
3222
|
}
|
|
3223
|
+
.tw-rounded-xl {
|
|
3224
|
+
border-radius: 0.75rem;
|
|
3225
|
+
}
|
|
3125
3226
|
.tw-rounded-t-md {
|
|
3126
3227
|
border-top-left-radius: 4px;
|
|
3127
3228
|
border-top-right-radius: 4px;
|
|
3128
3229
|
}
|
|
3230
|
+
.tw-rounded-bl-full {
|
|
3231
|
+
border-bottom-left-radius: 9999px;
|
|
3232
|
+
}
|
|
3233
|
+
.tw-rounded-br-full {
|
|
3234
|
+
border-bottom-right-radius: 9999px;
|
|
3235
|
+
}
|
|
3236
|
+
.tw-rounded-tl-full {
|
|
3237
|
+
border-top-left-radius: 9999px;
|
|
3238
|
+
}
|
|
3239
|
+
.tw-rounded-tr-full {
|
|
3240
|
+
border-top-right-radius: 9999px;
|
|
3241
|
+
}
|
|
3129
3242
|
.tw-border {
|
|
3130
3243
|
border-width: 1px;
|
|
3131
3244
|
}
|
|
3132
3245
|
.tw-border-0 {
|
|
3133
3246
|
border-width: 0px;
|
|
3134
3247
|
}
|
|
3135
|
-
.tw-border
|
|
3136
|
-
border-width:
|
|
3248
|
+
.tw-border-2 {
|
|
3249
|
+
border-width: 2px;
|
|
3137
3250
|
}
|
|
3138
3251
|
.\!tw-border-b-0 {
|
|
3139
3252
|
border-bottom-width: 0px !important;
|
|
@@ -3144,6 +3257,12 @@ imported in Sourcegraph shell.
|
|
|
3144
3257
|
.tw-border-b-\[1px\] {
|
|
3145
3258
|
border-bottom-width: 1px;
|
|
3146
3259
|
}
|
|
3260
|
+
.tw-border-l-0 {
|
|
3261
|
+
border-left-width: 0px;
|
|
3262
|
+
}
|
|
3263
|
+
.tw-border-r {
|
|
3264
|
+
border-right-width: 1px;
|
|
3265
|
+
}
|
|
3147
3266
|
.tw-border-t {
|
|
3148
3267
|
border-top-width: 1px;
|
|
3149
3268
|
}
|
|
@@ -3156,19 +3275,15 @@ imported in Sourcegraph shell.
|
|
|
3156
3275
|
.\!tw-border-\[var\(--vscode-tab-activeBorderTop\)\] {
|
|
3157
3276
|
border-color: var(--vscode-tab-activeBorderTop) !important;
|
|
3158
3277
|
}
|
|
3278
|
+
.\!tw-border-border {
|
|
3279
|
+
border-color: var(--vscode-dropdown-border) !important;
|
|
3280
|
+
}
|
|
3159
3281
|
.tw-border-border {
|
|
3160
3282
|
border-color: var(--vscode-dropdown-border);
|
|
3161
3283
|
}
|
|
3162
3284
|
.tw-border-button-border {
|
|
3163
3285
|
border-color: var(--vscode-button-border, transparent);
|
|
3164
3286
|
}
|
|
3165
|
-
.tw-border-current {
|
|
3166
|
-
border-color: currentColor;
|
|
3167
|
-
}
|
|
3168
|
-
.tw-border-gray-200 {
|
|
3169
|
-
--tw-border-opacity: 1;
|
|
3170
|
-
border-color: rgb(229 231 235 / var(--tw-border-opacity));
|
|
3171
|
-
}
|
|
3172
3287
|
.tw-border-input-border {
|
|
3173
3288
|
border-color: var(--vscode-input-border);
|
|
3174
3289
|
}
|
|
@@ -3191,12 +3306,12 @@ imported in Sourcegraph shell.
|
|
|
3191
3306
|
.tw-border-b-border {
|
|
3192
3307
|
border-bottom-color: var(--vscode-dropdown-border);
|
|
3193
3308
|
}
|
|
3194
|
-
.tw-border-e-transparent {
|
|
3195
|
-
border-inline-end-color: transparent;
|
|
3196
|
-
}
|
|
3197
3309
|
.tw-border-t-border {
|
|
3198
3310
|
border-top-color: var(--vscode-dropdown-border);
|
|
3199
3311
|
}
|
|
3312
|
+
.\!tw-bg-background {
|
|
3313
|
+
background-color: var(--vscode-editor-background) !important;
|
|
3314
|
+
}
|
|
3200
3315
|
.\!tw-bg-transparent {
|
|
3201
3316
|
background-color: transparent !important;
|
|
3202
3317
|
}
|
|
@@ -3218,6 +3333,9 @@ imported in Sourcegraph shell.
|
|
|
3218
3333
|
.tw-bg-badge-background {
|
|
3219
3334
|
background-color: var(--vscode-badge-background);
|
|
3220
3335
|
}
|
|
3336
|
+
.tw-bg-black\/50 {
|
|
3337
|
+
background-color: rgb(0 0 0 / 0.5);
|
|
3338
|
+
}
|
|
3221
3339
|
.tw-bg-blue-900 {
|
|
3222
3340
|
--tw-bg-opacity: 1;
|
|
3223
3341
|
background-color: rgb(30 58 138 / var(--tw-bg-opacity));
|
|
@@ -3234,9 +3352,6 @@ imported in Sourcegraph shell.
|
|
|
3234
3352
|
.tw-bg-button-secondary-background-hover {
|
|
3235
3353
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
3236
3354
|
}
|
|
3237
|
-
.tw-bg-current {
|
|
3238
|
-
background-color: currentColor;
|
|
3239
|
-
}
|
|
3240
3355
|
.tw-bg-gray-200 {
|
|
3241
3356
|
--tw-bg-opacity: 1;
|
|
3242
3357
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
@@ -3308,10 +3423,6 @@ imported in Sourcegraph shell.
|
|
|
3308
3423
|
.tw-bg-transparent {
|
|
3309
3424
|
background-color: transparent;
|
|
3310
3425
|
}
|
|
3311
|
-
.tw-bg-white {
|
|
3312
|
-
--tw-bg-opacity: 1;
|
|
3313
|
-
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
3314
|
-
}
|
|
3315
3426
|
.tw-bg-yellow-900 {
|
|
3316
3427
|
--tw-bg-opacity: 1;
|
|
3317
3428
|
background-color: rgb(113 63 18 / var(--tw-bg-opacity));
|
|
@@ -3334,6 +3445,9 @@ imported in Sourcegraph shell.
|
|
|
3334
3445
|
.tw-to-sourcegraph-orange {
|
|
3335
3446
|
--tw-gradient-to: #FF5543 var(--tw-gradient-to-position);
|
|
3336
3447
|
}
|
|
3448
|
+
.tw-fill-current {
|
|
3449
|
+
fill: currentColor;
|
|
3450
|
+
}
|
|
3337
3451
|
.\!tw-p-0 {
|
|
3338
3452
|
padding: 0px !important;
|
|
3339
3453
|
}
|
|
@@ -3355,6 +3469,9 @@ imported in Sourcegraph shell.
|
|
|
3355
3469
|
.tw-p-10 {
|
|
3356
3470
|
padding: 20px;
|
|
3357
3471
|
}
|
|
3472
|
+
.tw-p-12 {
|
|
3473
|
+
padding: 24px;
|
|
3474
|
+
}
|
|
3358
3475
|
.tw-p-2 {
|
|
3359
3476
|
padding: 4px;
|
|
3360
3477
|
}
|
|
@@ -3373,6 +3490,10 @@ imported in Sourcegraph shell.
|
|
|
3373
3490
|
.tw-p-8 {
|
|
3374
3491
|
padding: 16px;
|
|
3375
3492
|
}
|
|
3493
|
+
.\!tw-px-4 {
|
|
3494
|
+
padding-left: 8px !important;
|
|
3495
|
+
padding-right: 8px !important;
|
|
3496
|
+
}
|
|
3376
3497
|
.\!tw-px-6 {
|
|
3377
3498
|
padding-left: 12px !important;
|
|
3378
3499
|
padding-right: 12px !important;
|
|
@@ -3385,6 +3506,10 @@ imported in Sourcegraph shell.
|
|
|
3385
3506
|
padding-top: 2px !important;
|
|
3386
3507
|
padding-bottom: 2px !important;
|
|
3387
3508
|
}
|
|
3509
|
+
.\!tw-py-4 {
|
|
3510
|
+
padding-top: 8px !important;
|
|
3511
|
+
padding-bottom: 8px !important;
|
|
3512
|
+
}
|
|
3388
3513
|
.tw-px-0 {
|
|
3389
3514
|
padding-left: 0px;
|
|
3390
3515
|
padding-right: 0px;
|
|
@@ -3459,20 +3584,29 @@ imported in Sourcegraph shell.
|
|
|
3459
3584
|
.tw-pb-12 {
|
|
3460
3585
|
padding-bottom: 24px;
|
|
3461
3586
|
}
|
|
3587
|
+
.tw-pb-4 {
|
|
3588
|
+
padding-bottom: 8px;
|
|
3589
|
+
}
|
|
3462
3590
|
.tw-pb-6 {
|
|
3463
3591
|
padding-bottom: 12px;
|
|
3464
3592
|
}
|
|
3593
|
+
.tw-pl-1 {
|
|
3594
|
+
padding-left: 2px;
|
|
3595
|
+
}
|
|
3465
3596
|
.tw-pl-5 {
|
|
3466
3597
|
padding-left: 10px;
|
|
3467
3598
|
}
|
|
3468
3599
|
.tw-pl-6 {
|
|
3469
3600
|
padding-left: 12px;
|
|
3470
3601
|
}
|
|
3602
|
+
.tw-pr-2 {
|
|
3603
|
+
padding-right: 4px;
|
|
3604
|
+
}
|
|
3471
3605
|
.tw-pr-4 {
|
|
3472
3606
|
padding-right: 8px;
|
|
3473
3607
|
}
|
|
3474
|
-
.tw-pt-
|
|
3475
|
-
padding-top:
|
|
3608
|
+
.tw-pt-12 {
|
|
3609
|
+
padding-top: 24px;
|
|
3476
3610
|
}
|
|
3477
3611
|
.tw-pt-4 {
|
|
3478
3612
|
padding-top: 8px;
|
|
@@ -3712,6 +3846,11 @@ imported in Sourcegraph shell.
|
|
|
3712
3846
|
outline: 2px solid transparent;
|
|
3713
3847
|
outline-offset: 2px;
|
|
3714
3848
|
}
|
|
3849
|
+
.tw-ring-0 {
|
|
3850
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3851
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3852
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3853
|
+
}
|
|
3715
3854
|
.tw-ring-1 {
|
|
3716
3855
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3717
3856
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -3725,6 +3864,9 @@ imported in Sourcegraph shell.
|
|
|
3725
3864
|
--tw-ring-opacity: 1;
|
|
3726
3865
|
--tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity));
|
|
3727
3866
|
}
|
|
3867
|
+
.\!tw-ring-offset-background {
|
|
3868
|
+
--tw-ring-offset-color: var(--vscode-editor-background) !important;
|
|
3869
|
+
}
|
|
3728
3870
|
.tw-ring-offset-background {
|
|
3729
3871
|
--tw-ring-offset-color: var(--vscode-editor-background);
|
|
3730
3872
|
}
|
|
@@ -3737,17 +3879,38 @@ imported in Sourcegraph shell.
|
|
|
3737
3879
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3738
3880
|
transition-duration: 150ms;
|
|
3739
3881
|
}
|
|
3882
|
+
.tw-transition-\[max-height\] {
|
|
3883
|
+
transition-property: max-height;
|
|
3884
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3885
|
+
transition-duration: 150ms;
|
|
3886
|
+
}
|
|
3740
3887
|
.tw-transition-all {
|
|
3741
3888
|
transition-property: all;
|
|
3742
3889
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3743
3890
|
transition-duration: 150ms;
|
|
3744
3891
|
}
|
|
3892
|
+
.tw-transition-colors {
|
|
3893
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
3894
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3895
|
+
transition-duration: 150ms;
|
|
3896
|
+
}
|
|
3897
|
+
.tw-transition-transform {
|
|
3898
|
+
transition-property: transform;
|
|
3899
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3900
|
+
transition-duration: 150ms;
|
|
3901
|
+
}
|
|
3902
|
+
.tw-duration-200 {
|
|
3903
|
+
transition-duration: 200ms;
|
|
3904
|
+
}
|
|
3745
3905
|
.tw-duration-300 {
|
|
3746
3906
|
transition-duration: 300ms;
|
|
3747
3907
|
}
|
|
3748
3908
|
.tw-duration-75 {
|
|
3749
3909
|
transition-duration: 75ms;
|
|
3750
3910
|
}
|
|
3911
|
+
.tw-ease-in-out {
|
|
3912
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
3913
|
+
}
|
|
3751
3914
|
:root {
|
|
3752
3915
|
--vscode-font-size: 13px;
|
|
3753
3916
|
--vscode-font-family: -apple-system, BlinkMacSystemFont, 'Ubuntu', 'Droid Sans', 'Segoe WPC', 'Segoe UI', sans-serif;
|
|
@@ -4136,6 +4299,9 @@ imported in Sourcegraph shell.
|
|
|
4136
4299
|
.hover\:tw-bg-button-background-hover:hover {
|
|
4137
4300
|
background-color: var(--vscode-button-hoverBackground);
|
|
4138
4301
|
}
|
|
4302
|
+
.hover\:tw-bg-button-secondary-background:hover {
|
|
4303
|
+
background-color: var(--vscode-button-secondaryBackground);
|
|
4304
|
+
}
|
|
4139
4305
|
.hover\:tw-bg-button-secondary-background-hover:hover {
|
|
4140
4306
|
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
4141
4307
|
}
|
|
@@ -4242,27 +4408,33 @@ imported in Sourcegraph shell.
|
|
|
4242
4408
|
.focus-visible\:tw-ring-offset-2:focus-visible {
|
|
4243
4409
|
--tw-ring-offset-width: 2px;
|
|
4244
4410
|
}
|
|
4411
|
+
.focus-visible\:tw-ring-offset-background:focus-visible {
|
|
4412
|
+
--tw-ring-offset-color: var(--vscode-editor-background);
|
|
4413
|
+
}
|
|
4245
4414
|
.disabled\:tw-pointer-events-none:disabled {
|
|
4246
4415
|
pointer-events: none;
|
|
4247
4416
|
}
|
|
4248
4417
|
.disabled\:tw-cursor-not-allowed:disabled {
|
|
4249
4418
|
cursor: not-allowed;
|
|
4250
4419
|
}
|
|
4420
|
+
.disabled\:tw-bg-button-secondary-background:disabled {
|
|
4421
|
+
background-color: var(--vscode-button-secondaryBackground);
|
|
4422
|
+
}
|
|
4251
4423
|
.disabled\:tw-bg-current-25:disabled {
|
|
4252
4424
|
background-color: color-mix(in lch, currentColor 25%, transparent);
|
|
4253
4425
|
}
|
|
4254
4426
|
.disabled\:tw-text-current:disabled {
|
|
4255
4427
|
color: currentColor;
|
|
4256
4428
|
}
|
|
4429
|
+
.disabled\:tw-text-muted-foreground:disabled {
|
|
4430
|
+
color: var(--vscode-input-placeholderForeground);
|
|
4431
|
+
}
|
|
4257
4432
|
.disabled\:tw-opacity-50:disabled {
|
|
4258
4433
|
opacity: 0.5;
|
|
4259
4434
|
}
|
|
4260
4435
|
.disabled\:tw-opacity-75:disabled {
|
|
4261
4436
|
opacity: 0.75;
|
|
4262
4437
|
}
|
|
4263
|
-
.tw-group:hover .group-hover\:tw-opacity-100 {
|
|
4264
|
-
opacity: 1;
|
|
4265
|
-
}
|
|
4266
4438
|
.tw-peer:disabled ~ .peer-disabled\:tw-cursor-not-allowed {
|
|
4267
4439
|
cursor: not-allowed;
|
|
4268
4440
|
}
|
|
@@ -4281,6 +4453,14 @@ imported in Sourcegraph shell.
|
|
|
4281
4453
|
.data-\[disabled\=true\]\:tw-pointer-events-none[data-disabled=true] {
|
|
4282
4454
|
pointer-events: none;
|
|
4283
4455
|
}
|
|
4456
|
+
.data-\[state\=checked\]\:tw-translate-x-5[data-state=checked] {
|
|
4457
|
+
--tw-translate-x: 10px;
|
|
4458
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
4459
|
+
}
|
|
4460
|
+
.data-\[state\=unchecked\]\:tw-translate-x-0[data-state=unchecked] {
|
|
4461
|
+
--tw-translate-x: 0px;
|
|
4462
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
4463
|
+
}
|
|
4284
4464
|
@keyframes tw-accordion-up {
|
|
4285
4465
|
from {
|
|
4286
4466
|
height: var(--radix-accordion-content-height);
|
|
@@ -4325,16 +4505,56 @@ imported in Sourcegraph shell.
|
|
|
4325
4505
|
.data-\[state\=open\]\:tw-animate-collapsible-down[data-state=open] {
|
|
4326
4506
|
animation: tw-collapsible-down 0.15s ease-out;
|
|
4327
4507
|
}
|
|
4328
|
-
.data-\[
|
|
4329
|
-
|
|
4508
|
+
.data-\[state\=checked\]\:tw-bg-button-background[data-state=checked] {
|
|
4509
|
+
background-color: var(--vscode-button-background);
|
|
4330
4510
|
}
|
|
4331
|
-
|
|
4332
|
-
|
|
4511
|
+
.data-\[state\=unchecked\]\:tw-bg-button-secondary-background[data-state=unchecked] {
|
|
4512
|
+
background-color: var(--vscode-button-secondaryBackground);
|
|
4333
4513
|
}
|
|
4334
|
-
|
|
4335
|
-
|
|
4514
|
+
.data-\[disabled\=true\]\:tw-opacity-50[data-disabled=true] {
|
|
4515
|
+
opacity: 0.5;
|
|
4336
4516
|
}
|
|
4337
4517
|
@media (min-width: 768px) {
|
|
4518
|
+
.md\:tw-size-8 {
|
|
4519
|
+
width: 16px;
|
|
4520
|
+
height: 16px;
|
|
4521
|
+
}
|
|
4522
|
+
.md\:tw-p-4 {
|
|
4523
|
+
padding: 8px;
|
|
4524
|
+
}
|
|
4525
|
+
.md\:tw-px-2 {
|
|
4526
|
+
padding-left: 4px;
|
|
4527
|
+
padding-right: 4px;
|
|
4528
|
+
}
|
|
4529
|
+
.md\:tw-px-4 {
|
|
4530
|
+
padding-left: 8px;
|
|
4531
|
+
padding-right: 8px;
|
|
4532
|
+
}
|
|
4533
|
+
.md\:tw-px-6 {
|
|
4534
|
+
padding-left: 12px;
|
|
4535
|
+
padding-right: 12px;
|
|
4536
|
+
}
|
|
4537
|
+
.md\:tw-py-2 {
|
|
4538
|
+
padding-top: 4px;
|
|
4539
|
+
padding-bottom: 4px;
|
|
4540
|
+
}
|
|
4541
|
+
.md\:tw-py-3 {
|
|
4542
|
+
padding-top: 6px;
|
|
4543
|
+
padding-bottom: 6px;
|
|
4544
|
+
}
|
|
4545
|
+
.md\:tw-pr-3 {
|
|
4546
|
+
padding-right: 6px;
|
|
4547
|
+
}
|
|
4548
|
+
.md\:tw-pt-2 {
|
|
4549
|
+
padding-top: 4px;
|
|
4550
|
+
}
|
|
4551
|
+
.md\:tw-text-base {
|
|
4552
|
+
font-size: 1rem;
|
|
4553
|
+
line-height: 1.5rem;
|
|
4554
|
+
}
|
|
4555
|
+
.md\:tw-text-md {
|
|
4556
|
+
font-size: var(--vscode-font-size);
|
|
4557
|
+
}
|
|
4338
4558
|
.md\:tw-text-sm {
|
|
4339
4559
|
font-size: calc(calc(12/13)*var(--vscode-font-size));
|
|
4340
4560
|
}
|