yt-chat-components 0.9.4 → 0.9.6
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/package.json
CHANGED
|
@@ -597,7 +597,7 @@ video {
|
|
|
597
597
|
|
|
598
598
|
.drop-down-title {
|
|
599
599
|
font-weight: 500;
|
|
600
|
-
font-size:
|
|
600
|
+
font-size: 18px;
|
|
601
601
|
color: #000000;
|
|
602
602
|
line-height: 1.1;
|
|
603
603
|
text-align: left;
|
|
@@ -751,6 +751,10 @@ margin-bottom:1rem;
|
|
|
751
751
|
border-bottom-left-radius: 50px;
|
|
752
752
|
transition: height 0.2s ease;
|
|
753
753
|
}
|
|
754
|
+
.cl-input-element::-webkit-scrollbar{
|
|
755
|
+
width: 0 !important;
|
|
756
|
+
}
|
|
757
|
+
|
|
754
758
|
.cl-input-element::placeholder {
|
|
755
759
|
line-height:45px;
|
|
756
760
|
}
|
|
@@ -2346,17 +2350,15 @@ input::-ms-input-placeholder { /* Microsoft Edge */
|
|
|
2346
2350
|
}
|
|
2347
2351
|
|
|
2348
2352
|
.w_tagListClass {
|
|
2349
|
-
// position: absolute;
|
|
2350
2353
|
width: 100%;
|
|
2351
2354
|
height: fit-content;
|
|
2352
|
-
// background: #F9FAFB;
|
|
2353
2355
|
display: flex;
|
|
2354
2356
|
align-items: center;
|
|
2355
2357
|
padding: 8px 0 8px 10px;
|
|
2356
2358
|
flex-wrap: wrap;
|
|
2357
2359
|
gap: 8px;
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
+
}
|
|
2361
|
+
.w_tagListClass .w_tagItemBox {
|
|
2360
2362
|
padding: 8px 12px;
|
|
2361
2363
|
display: flex;
|
|
2362
2364
|
align-items: center;
|
|
@@ -2368,36 +2370,34 @@ input::-ms-input-placeholder { /* Microsoft Edge */
|
|
|
2368
2370
|
border: 1px solid #4B4FFF;
|
|
2369
2371
|
cursor: pointer;
|
|
2370
2372
|
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2373
|
+
}
|
|
2374
|
+
.w_tagListClass .w_tagItemBox:hover, .w_tagListClass .w_tagItemBox:active {
|
|
2375
|
+
background: linear-gradient( 270deg, #828EFE 0%, #4B4FFF 100%);
|
|
2376
|
+
}
|
|
2377
|
+
.w_tagListClass .w_tagItemBox:hover .w_tagImgh,.w_tagListClass .w_tagItemBox:active .w_tagImgh {
|
|
2378
|
+
filter: brightness(100);
|
|
2379
|
+
}
|
|
2380
|
+
|
|
2381
|
+
.w_tagListClass .w_tagItemBox:hover .w_tagItemText, .w_tagListClass .w_tagItemBox:active .w_tagItemText {
|
|
2382
|
+
color: #fff;
|
|
2383
|
+
}
|
|
2384
|
+
.w_tagListClass .w_tagItemBox .w_tagImgh{
|
|
2381
2385
|
width: 16px;
|
|
2382
2386
|
height: 16px;
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
.w_tagItemText {
|
|
2387
|
+
}
|
|
2388
|
+
.w_tagListClass .w_tagItemBox .w_tagItemText {
|
|
2386
2389
|
width: fit-content;
|
|
2387
2390
|
padding-top: 2px;
|
|
2388
2391
|
color: #1552FF;
|
|
2389
2392
|
font-size: 14px;
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
.w_tagImg {
|
|
2393
|
+
}
|
|
2394
|
+
.w_tagListClass .w_tagItemBox .w_tagImg {
|
|
2393
2395
|
margin-left: 6px;
|
|
2394
2396
|
width: 12px;
|
|
2395
2397
|
height: 12px;
|
|
2396
2398
|
background-repeat: no-repeat;
|
|
2397
2399
|
background-size: cover;
|
|
2398
|
-
}
|
|
2399
2400
|
}
|
|
2400
|
-
}
|
|
2401
2401
|
|
|
2402
2402
|
.w_inputBox {
|
|
2403
2403
|
width: calc(100% - 16px);
|
|
@@ -2408,7 +2408,8 @@ input::-ms-input-placeholder { /* Microsoft Edge */
|
|
|
2408
2408
|
border-radius: 30px;
|
|
2409
2409
|
background: #FFFFFF;
|
|
2410
2410
|
transition: height 0.2s ease;
|
|
2411
|
-
|
|
2411
|
+
}
|
|
2412
|
+
.w_inputBox textarea {
|
|
2412
2413
|
resize: none;
|
|
2413
2414
|
min-height: 48px;
|
|
2414
2415
|
max-height: 96px;
|
|
@@ -2425,15 +2426,11 @@ input::-ms-input-placeholder { /* Microsoft Edge */
|
|
|
2425
2426
|
border-top-left-radius: 50px;
|
|
2426
2427
|
border-bottom-left-radius: 50px;
|
|
2427
2428
|
}
|
|
2428
|
-
|
|
2429
|
-
|
|
2429
|
+
|
|
2430
|
+
.w_inputBox textarea::-webkit-scrollbar {
|
|
2431
|
+
display: none;
|
|
2430
2432
|
}
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
/**
|
|
2434
|
-
* 输入框上方的标签问题列表
|
|
2435
|
-
*/
|
|
2436
|
-
|
|
2433
|
+
|
|
2437
2434
|
.w_send_voice_box {
|
|
2438
2435
|
height: 23px;
|
|
2439
2436
|
display: flex;
|
|
@@ -207,7 +207,7 @@
|
|
|
207
207
|
position:relative;
|
|
208
208
|
}
|
|
209
209
|
.p_toolRightToRight .rightMoreButton{
|
|
210
|
-
background: url(
|
|
210
|
+
background: url('../../assets/aicenter/moreAi.png');
|
|
211
211
|
background-size: 85% auto;
|
|
212
212
|
background-repeat: no-repeat;
|
|
213
213
|
background-position: bottom;
|