@auto-ai/agent 2.1.221 → 2.1.222

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.
Files changed (41) hide show
  1. package/dist/safe-a/404/index.html +1 -1
  2. package/dist/safe-a/404.html +1 -1
  3. package/dist/safe-a/index.html +2 -2
  4. package/dist/safe-a/index.txt +1 -1
  5. package/dist/safe-a/manage/about/index.html +2 -2
  6. package/dist/safe-a/manage/about/index.txt +1 -1
  7. package/dist/safe-a/manage/env/index.html +2 -2
  8. package/dist/safe-a/manage/env/index.txt +1 -1
  9. package/dist/safe-a/manage/geelib/index.html +2 -2
  10. package/dist/safe-a/manage/geelib/index.txt +1 -1
  11. package/dist/safe-a/manage/general/index.html +2 -2
  12. package/dist/safe-a/manage/general/index.txt +1 -1
  13. package/dist/safe-a/manage/git/index.html +2 -2
  14. package/dist/safe-a/manage/git/index.txt +1 -1
  15. package/dist/safe-a/manage/im/index.html +2 -2
  16. package/dist/safe-a/manage/im/index.txt +1 -1
  17. package/dist/safe-a/manage/index.html +2 -2
  18. package/dist/safe-a/manage/index.txt +1 -1
  19. package/dist/safe-a/manage/library/index.html +2 -2
  20. package/dist/safe-a/manage/library/index.txt +1 -1
  21. package/dist/safe-a/manage/mcp/index.html +2 -2
  22. package/dist/safe-a/manage/mcp/index.txt +1 -1
  23. package/dist/safe-a/manage/permissions/index.html +2 -2
  24. package/dist/safe-a/manage/permissions/index.txt +1 -1
  25. package/dist/safe-a/manage/skills/index.html +2 -2
  26. package/dist/safe-a/manage/skills/index.txt +1 -1
  27. package/dist/safe-a/manage/task/index.html +2 -2
  28. package/dist/safe-a/manage/task/index.txt +1 -1
  29. package/dist/safe-a/manage/teams/index.html +2 -2
  30. package/dist/safe-a/manage/teams/index.txt +1 -1
  31. package/dist/safe-a/manage/tools/index.html +2 -2
  32. package/dist/safe-a/manage/tools/index.txt +1 -1
  33. package/dist/ws-test/agent-teams.html +1400 -0
  34. package/dist/ws-test/team-chat.js +760 -0
  35. package/dist/ws-test/ws-test.css +613 -6
  36. package/dist/ws-test/ws-test.html +23 -7
  37. package/dist/ws-test/ws-test.js +232 -85
  38. package/package.json +6 -6
  39. /package/dist/safe-a/_next/static/{1lVS2YCkhJeMjvIi_ropq → O9azldpveh8Nr32O4nBb7}/_buildManifest.js +0 -0
  40. /package/dist/safe-a/_next/static/{1lVS2YCkhJeMjvIi_ropq → O9azldpveh8Nr32O4nBb7}/_clientMiddlewareManifest.json +0 -0
  41. /package/dist/safe-a/_next/static/{1lVS2YCkhJeMjvIi_ropq → O9azldpveh8Nr32O4nBb7}/_ssgManifest.js +0 -0
@@ -197,6 +197,18 @@
197
197
  text-overflow: ellipsis;
198
198
  white-space: nowrap;
199
199
  }
200
+ .sidebar-session-kind-icon {
201
+ flex-shrink: 0;
202
+ width: 14px;
203
+ height: 14px;
204
+ color: var(--ds-muted);
205
+ display: inline-flex;
206
+ align-items: center;
207
+ justify-content: center;
208
+ }
209
+ .sidebar-session-item.active .sidebar-session-kind-icon {
210
+ color: var(--ds-secondary);
211
+ }
200
212
  .sidebar-session-title {
201
213
  flex: 1;
202
214
  min-width: 0;
@@ -1934,6 +1946,31 @@
1934
1946
  .chat-run-group {
1935
1947
  margin-bottom: 4px;
1936
1948
  }
1949
+ .chat-run-group--main {
1950
+ margin-bottom: 0;
1951
+ }
1952
+ .chat-thread .chat-turn {
1953
+ margin-bottom: 24px;
1954
+ padding-bottom: 24px;
1955
+ border-bottom: 1px solid var(--ds-separator, #f0f0f2);
1956
+ }
1957
+ .chat-thread .chat-turn:last-child {
1958
+ margin-bottom: 0;
1959
+ padding-bottom: 0;
1960
+ border-bottom: none;
1961
+ }
1962
+ .chat-thread .chat-turn--active {
1963
+ border-bottom-color: transparent;
1964
+ }
1965
+ .chat-thread .chat-turn--scheduled {
1966
+ border-left: 3px solid #d97706;
1967
+ padding-left: 12px;
1968
+ margin-left: -12px;
1969
+ }
1970
+ .chat-thread .chat-turn-body {
1971
+ display: flex;
1972
+ flex-direction: column;
1973
+ }
1937
1974
  .chat-msg-label {
1938
1975
  display: none;
1939
1976
  }
@@ -2316,7 +2353,8 @@
2316
2353
  opacity: 0.55;
2317
2354
  pointer-events: none;
2318
2355
  }
2319
- .composer-card .prompt-editor#prompt {
2356
+ .composer-card .prompt-editor#prompt,
2357
+ .composer-card .prompt-editor#teamChatPrompt {
2320
2358
  width: 100%;
2321
2359
  min-height: 48px;
2322
2360
  max-height: 28vh;
@@ -2333,7 +2371,8 @@
2333
2371
  white-space: pre-wrap;
2334
2372
  word-break: break-word;
2335
2373
  }
2336
- .composer-card .prompt-editor#prompt:empty::before {
2374
+ .composer-card .prompt-editor#prompt:empty::before,
2375
+ .composer-card .prompt-editor#teamChatPrompt:empty::before {
2337
2376
  content: attr(data-placeholder);
2338
2377
  color: #b4b4b4;
2339
2378
  pointer-events: none;
@@ -2983,7 +3022,8 @@
2983
3022
  border-color: #d4d4d8;
2984
3023
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
2985
3024
  }
2986
- .composer-card .prompt-editor#prompt {
3025
+ .composer-card .prompt-editor#prompt,
3026
+ .composer-card .prompt-editor#teamChatPrompt {
2987
3027
  font-size: 16px;
2988
3028
  min-height: 28px;
2989
3029
  max-height: 200px;
@@ -3009,7 +3049,13 @@
3009
3049
  height: 30px;
3010
3050
  border-radius: 6px;
3011
3051
  }
3012
- #btnSend.composer-action-btn {
3052
+ .prompt-editor.is-disabled {
3053
+ opacity: 0.55;
3054
+ cursor: not-allowed;
3055
+ pointer-events: none;
3056
+ }
3057
+ #btnSend.composer-action-btn,
3058
+ #btnTeamChatSend.composer-action-btn {
3013
3059
  width: 34px;
3014
3060
  height: 34px;
3015
3061
  border-radius: 999px;
@@ -3017,10 +3063,12 @@
3017
3063
  color: #fff;
3018
3064
  flex-shrink: 0;
3019
3065
  }
3020
- #btnSend.composer-action-btn:hover:not(:disabled) {
3066
+ #btnSend.composer-action-btn:hover:not(:disabled),
3067
+ #btnTeamChatSend.composer-action-btn:hover:not(:disabled) {
3021
3068
  background: var(--ds-accent-hover);
3022
3069
  }
3023
- #btnSend.composer-action-btn:disabled {
3070
+ #btnSend.composer-action-btn:disabled,
3071
+ #btnTeamChatSend.composer-action-btn:disabled {
3024
3072
  background: #d4d4d8;
3025
3073
  opacity: 1;
3026
3074
  }
@@ -3944,3 +3992,562 @@
3944
3992
  .picker-cloud-panel .agent-picker-item:last-child {
3945
3993
  border-bottom: none;
3946
3994
  }
3995
+ .skill-store-modal-body {
3996
+ padding: 0;
3997
+ min-height: 320px;
3998
+ max-height: min(70vh, 560px);
3999
+ overflow: hidden;
4000
+ display: flex;
4001
+ flex-direction: column;
4002
+ }
4003
+ .skill-store-modal-body .picker-cloud-panel {
4004
+ flex: 1;
4005
+ min-height: 0;
4006
+ }
4007
+
4008
+ /* 团队管理页 */
4009
+ #teamsApp {
4010
+ position: relative;
4011
+ }
4012
+ #teamsApp .teams-sidebar-panel {
4013
+ width: 0;
4014
+ overflow: hidden;
4015
+ border-right: none;
4016
+ opacity: 0;
4017
+ pointer-events: none;
4018
+ transition: width 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
4019
+ }
4020
+ #teamsApp.is-team-sidebar-open .teams-sidebar-panel {
4021
+ width: var(--sidebar-w);
4022
+ overflow: hidden;
4023
+ border-right: 1px solid var(--ds-border);
4024
+ opacity: 1;
4025
+ pointer-events: auto;
4026
+ }
4027
+ .teams-sidebar-edge-toggle {
4028
+ position: absolute;
4029
+ top: 50%;
4030
+ left: 0;
4031
+ z-index: 60;
4032
+ transform: translateY(-50%);
4033
+ display: flex;
4034
+ align-items: center;
4035
+ justify-content: center;
4036
+ width: 14px;
4037
+ height: 48px;
4038
+ padding: 0;
4039
+ margin: 0;
4040
+ border: 1px solid var(--ds-border);
4041
+ border-left: none;
4042
+ border-radius: 0 8px 8px 0;
4043
+ background: #fff;
4044
+ color: var(--ds-muted);
4045
+ cursor: pointer;
4046
+ box-shadow: 2px 0 10px rgba(15, 23, 42, 0.06);
4047
+ transition:
4048
+ left 0.2s ease,
4049
+ transform 0.2s ease,
4050
+ color 0.15s ease,
4051
+ background 0.15s ease,
4052
+ box-shadow 0.15s ease,
4053
+ border-radius 0.2s ease;
4054
+ }
4055
+ .teams-sidebar-edge-toggle:hover {
4056
+ color: var(--ds-accent);
4057
+ background: #f7f7f8;
4058
+ box-shadow: 2px 0 12px rgba(15, 23, 42, 0.1);
4059
+ }
4060
+ .teams-sidebar-edge-toggle:focus-visible {
4061
+ outline: 2px solid var(--ds-accent);
4062
+ outline-offset: 2px;
4063
+ }
4064
+ .teams-sidebar-edge-toggle svg {
4065
+ flex-shrink: 0;
4066
+ transition: transform 0.2s ease;
4067
+ }
4068
+ #teamsApp.is-team-sidebar-open .teams-sidebar-edge-toggle {
4069
+ left: var(--sidebar-w);
4070
+ transform: translate(-50%, -50%);
4071
+ border-left: 1px solid var(--ds-border);
4072
+ border-radius: 8px;
4073
+ box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
4074
+ }
4075
+ #teamsApp.is-team-sidebar-open .teams-sidebar-edge-toggle:hover {
4076
+ box-shadow: 0 2px 14px rgba(15, 23, 42, 0.12);
4077
+ }
4078
+ #teamsApp.is-team-sidebar-open .teams-sidebar-edge-toggle svg {
4079
+ transform: rotate(180deg);
4080
+ }
4081
+ .teams-main {
4082
+ min-height: 0;
4083
+ display: flex;
4084
+ flex-direction: column;
4085
+ overflow: hidden;
4086
+ }
4087
+ .teams-main-header .main-header-title-wrap {
4088
+ flex: 1;
4089
+ min-width: 0;
4090
+ }
4091
+ .teams-content-desc {
4092
+ flex-shrink: 0;
4093
+ margin: 4px 0 0;
4094
+ padding: 0;
4095
+ font-size: 12px;
4096
+ color: var(--ds-muted);
4097
+ }
4098
+ .teams-workspace {
4099
+ flex: 1;
4100
+ min-height: 0;
4101
+ min-width: 0;
4102
+ display: flex;
4103
+ flex-direction: row;
4104
+ overflow: hidden;
4105
+ }
4106
+ .teams-members-panel {
4107
+ width: var(--sidebar-w);
4108
+ flex-shrink: 0;
4109
+ display: flex;
4110
+ flex-direction: column;
4111
+ min-height: 0;
4112
+ border-right: 1px solid var(--ds-border);
4113
+ background: #f7f7f8;
4114
+ }
4115
+ .teams-members-head {
4116
+ flex-shrink: 0;
4117
+ display: flex;
4118
+ align-items: center;
4119
+ justify-content: space-between;
4120
+ gap: 8px;
4121
+ padding: 10px 12px;
4122
+ border-bottom: 1px solid var(--ds-border);
4123
+ }
4124
+ .teams-members-head-left {
4125
+ display: flex;
4126
+ align-items: baseline;
4127
+ gap: 6px;
4128
+ min-width: 0;
4129
+ }
4130
+ .teams-members-head h2 {
4131
+ margin: 0;
4132
+ font-size: 13px;
4133
+ font-weight: 600;
4134
+ color: var(--ds-text);
4135
+ }
4136
+ .teams-members-count {
4137
+ font-size: 12px;
4138
+ color: var(--ds-muted);
4139
+ }
4140
+ .teams-members-head-actions {
4141
+ flex-shrink: 0;
4142
+ display: flex;
4143
+ align-items: center;
4144
+ gap: 6px;
4145
+ }
4146
+ .teams-members-head-actions .btn-primary {
4147
+ padding: 4px 10px;
4148
+ font-size: 12px;
4149
+ }
4150
+ .teams-members-scroll {
4151
+ flex: 1;
4152
+ min-height: 0;
4153
+ overflow-y: auto;
4154
+ padding: 6px 8px 12px;
4155
+ scrollbar-width: thin;
4156
+ }
4157
+ .teams-members-scroll .sidebar-session-list {
4158
+ gap: 2px;
4159
+ }
4160
+ .teams-members-scroll .agent-list-empty {
4161
+ padding: 32px 12px;
4162
+ text-align: center;
4163
+ font-size: 13px;
4164
+ color: var(--ds-muted);
4165
+ line-height: 1.5;
4166
+ }
4167
+ .teams-chat-column {
4168
+ flex: 1;
4169
+ min-width: 0;
4170
+ min-height: 0;
4171
+ overflow: hidden;
4172
+ }
4173
+ .teams-chat-thread {
4174
+ padding: 16px 20px 24px;
4175
+ overflow-y: auto;
4176
+ flex: 1;
4177
+ min-height: 0;
4178
+ }
4179
+ .teams-chat-thread .chat-round {
4180
+ margin-bottom: 20px;
4181
+ padding-bottom: 20px;
4182
+ border-bottom: 1px solid #f0f0f2;
4183
+ }
4184
+ .teams-chat-thread .chat-round:last-child {
4185
+ margin-bottom: 0;
4186
+ padding-bottom: 0;
4187
+ border-bottom: none;
4188
+ }
4189
+ .teams-chat-thread .chat-round-thread {
4190
+ display: flex;
4191
+ flex-direction: column;
4192
+ gap: 2px;
4193
+ max-width: var(--chat-max);
4194
+ margin: 0 auto;
4195
+ }
4196
+ .teams-chat-thread .chat-round-pending {
4197
+ font-size: 12px;
4198
+ color: var(--ds-muted);
4199
+ padding: 6px 0 4px 44px;
4200
+ }
4201
+ .teams-chat-thread .chat-msg-row {
4202
+ display: flex;
4203
+ gap: 10px;
4204
+ align-items: flex-start;
4205
+ margin-bottom: 12px;
4206
+ width: 100%;
4207
+ }
4208
+ .teams-chat-thread .chat-msg-row--user {
4209
+ flex-direction: row-reverse;
4210
+ justify-content: flex-start;
4211
+ }
4212
+ .teams-chat-thread .chat-msg-row--assistant,
4213
+ .teams-chat-thread .chat-msg-row--dispatch {
4214
+ justify-content: flex-start;
4215
+ }
4216
+ .teams-chat-thread .chat-dispatch-card {
4217
+ border: 1px dashed #c4b5fd;
4218
+ border-radius: 12px;
4219
+ background: #f5f3ff;
4220
+ padding: 10px 14px;
4221
+ max-width: 85%;
4222
+ font-size: 13px;
4223
+ color: #5b21b6;
4224
+ font-weight: 500;
4225
+ white-space: pre-wrap;
4226
+ word-break: break-word;
4227
+ line-height: 1.45;
4228
+ }
4229
+ .teams-chat-thread .chat-typing-body {
4230
+ font-size: 13px;
4231
+ color: var(--ds-muted);
4232
+ font-style: italic;
4233
+ padding: 8px 14px;
4234
+ background: #f4f4f5;
4235
+ border-radius: 12px;
4236
+ max-width: 85%;
4237
+ }
4238
+ .teams-chat-thread .chat-msg-avatar {
4239
+ flex-shrink: 0;
4240
+ width: 34px;
4241
+ height: 34px;
4242
+ border-radius: 50%;
4243
+ display: flex;
4244
+ align-items: center;
4245
+ justify-content: center;
4246
+ font-size: 13px;
4247
+ font-weight: 650;
4248
+ color: #fff;
4249
+ }
4250
+ .teams-chat-thread .chat-msg-body-wrap {
4251
+ flex: 1;
4252
+ min-width: 0;
4253
+ display: flex;
4254
+ flex-direction: column;
4255
+ gap: 4px;
4256
+ }
4257
+ .teams-chat-thread .chat-msg-row--user .chat-msg-body-wrap {
4258
+ align-items: flex-end;
4259
+ }
4260
+ .teams-chat-thread .chat-msg-sender {
4261
+ display: block;
4262
+ font-size: 12px;
4263
+ font-weight: 500;
4264
+ color: var(--ds-muted);
4265
+ }
4266
+ .teams-chat-thread .chat-msg-row--user .chat-user-body {
4267
+ background: #f4f4f5;
4268
+ border-radius: 12px;
4269
+ padding: 10px 14px;
4270
+ max-width: 85%;
4271
+ font-size: 15px;
4272
+ line-height: 1.45;
4273
+ white-space: pre-wrap;
4274
+ word-break: break-word;
4275
+ }
4276
+ .teams-chat-thread .chat-md-body {
4277
+ background: #fff;
4278
+ border: 1px solid #ececef;
4279
+ border-radius: 12px;
4280
+ padding: 10px 14px;
4281
+ max-width: 85%;
4282
+ font-size: 15px;
4283
+ line-height: 1.45;
4284
+ }
4285
+ .teams-member-item {
4286
+ display: flex;
4287
+ align-items: center;
4288
+ gap: 10px;
4289
+ flex: 1;
4290
+ min-width: 0;
4291
+ padding: 8px 10px;
4292
+ border: none;
4293
+ border-radius: 10px;
4294
+ background: transparent;
4295
+ cursor: pointer;
4296
+ text-align: left;
4297
+ font: inherit;
4298
+ color: inherit;
4299
+ }
4300
+ .teams-member-item:hover {
4301
+ background: var(--ds-item-hover);
4302
+ }
4303
+ .teams-member-avatar {
4304
+ flex-shrink: 0;
4305
+ width: 34px;
4306
+ height: 34px;
4307
+ border-radius: 50%;
4308
+ display: flex;
4309
+ align-items: center;
4310
+ justify-content: center;
4311
+ font-size: 13px;
4312
+ font-weight: 650;
4313
+ color: #fff;
4314
+ background: var(--ds-accent);
4315
+ }
4316
+ .teams-member-main {
4317
+ flex: 1;
4318
+ min-width: 0;
4319
+ display: flex;
4320
+ flex-direction: column;
4321
+ gap: 2px;
4322
+ }
4323
+ .teams-member-name {
4324
+ font-size: 14px;
4325
+ font-weight: 600;
4326
+ color: var(--ds-text);
4327
+ overflow: hidden;
4328
+ text-overflow: ellipsis;
4329
+ white-space: nowrap;
4330
+ }
4331
+ .teams-member-sub {
4332
+ font-size: 11px;
4333
+ color: var(--ds-muted);
4334
+ overflow: hidden;
4335
+ text-overflow: ellipsis;
4336
+ white-space: nowrap;
4337
+ }
4338
+ .teams-member-actions {
4339
+ flex-shrink: 0;
4340
+ display: flex;
4341
+ align-items: center;
4342
+ gap: 4px;
4343
+ padding-right: 6px;
4344
+ }
4345
+ .teams-member-row {
4346
+ list-style: none;
4347
+ display: flex;
4348
+ align-items: center;
4349
+ gap: 2px;
4350
+ border-radius: 10px;
4351
+ }
4352
+ .teams-member-row:hover {
4353
+ background: rgba(0, 0, 0, 0.03);
4354
+ }
4355
+ .teams-add-member-modal.agent-md-modal-card {
4356
+ width: min(480px, 100%);
4357
+ height: auto;
4358
+ max-height: min(72vh, 560px);
4359
+ }
4360
+ .teams-add-member-body {
4361
+ flex: 1;
4362
+ min-height: 0;
4363
+ display: flex;
4364
+ flex-direction: column;
4365
+ gap: 10px;
4366
+ padding: 12px 16px 16px;
4367
+ overflow: hidden;
4368
+ background: #f2f2f7;
4369
+ }
4370
+ .teams-add-member-body .agent-picker-scroll {
4371
+ flex: 1;
4372
+ min-height: 120px;
4373
+ max-height: none;
4374
+ background: #fff;
4375
+ }
4376
+ .teams-add-member-item {
4377
+ display: flex;
4378
+ align-items: flex-start;
4379
+ gap: 10px;
4380
+ width: 100%;
4381
+ padding: 10px 12px;
4382
+ border: none;
4383
+ border-bottom: 1px solid rgba(0, 0, 0, 0.06);
4384
+ background: transparent;
4385
+ cursor: pointer;
4386
+ text-align: left;
4387
+ font: inherit;
4388
+ color: inherit;
4389
+ }
4390
+ .teams-add-member-item:last-child {
4391
+ border-bottom: none;
4392
+ }
4393
+ .teams-add-member-item:hover {
4394
+ background: var(--ds-item-hover);
4395
+ }
4396
+ .teams-add-member-item.is-selected {
4397
+ background: var(--ds-item-active);
4398
+ }
4399
+ .teams-add-member-item input[type='checkbox'] {
4400
+ flex-shrink: 0;
4401
+ margin-top: 3px;
4402
+ cursor: pointer;
4403
+ }
4404
+ .teams-add-member-item-main {
4405
+ flex: 1;
4406
+ min-width: 0;
4407
+ display: flex;
4408
+ flex-direction: column;
4409
+ gap: 3px;
4410
+ }
4411
+ .teams-add-member-item-name {
4412
+ font-size: 14px;
4413
+ font-weight: 600;
4414
+ color: var(--ds-text);
4415
+ overflow: hidden;
4416
+ text-overflow: ellipsis;
4417
+ white-space: nowrap;
4418
+ }
4419
+ .teams-add-member-item-desc {
4420
+ font-size: 12px;
4421
+ color: var(--ds-secondary);
4422
+ line-height: 1.4;
4423
+ display: -webkit-box;
4424
+ -webkit-box-orient: vertical;
4425
+ -webkit-line-clamp: 2;
4426
+ overflow: hidden;
4427
+ }
4428
+ .teams-sidebar-list {
4429
+ padding-top: 4px;
4430
+ }
4431
+ .teams-sidebar-list .sidebar-session-main {
4432
+ flex-direction: column;
4433
+ align-items: flex-start;
4434
+ gap: 2px;
4435
+ height: auto;
4436
+ padding-top: 9px;
4437
+ padding-bottom: 9px;
4438
+ white-space: normal;
4439
+ }
4440
+ .teams-sidebar-list .sidebar-session-meta {
4441
+ display: block;
4442
+ font-size: 11px;
4443
+ color: var(--ds-muted);
4444
+ margin-top: 2px;
4445
+ font-weight: 400;
4446
+ }
4447
+ .teams-edit-panel {
4448
+ position: absolute;
4449
+ top: 0;
4450
+ right: 0;
4451
+ bottom: 0;
4452
+ z-index: 40;
4453
+ flex-shrink: 0;
4454
+ width: min(400px, 44vw);
4455
+ display: none;
4456
+ flex-direction: column;
4457
+ min-height: 0;
4458
+ border-left: 1px solid var(--ds-border);
4459
+ background: var(--ds-bg);
4460
+ box-shadow: -4px 0 24px rgba(15, 23, 42, 0.06);
4461
+ }
4462
+ .teams-edit-panel.is-open {
4463
+ display: flex;
4464
+ }
4465
+ .teams-edit-head {
4466
+ flex-shrink: 0;
4467
+ display: flex;
4468
+ align-items: center;
4469
+ justify-content: space-between;
4470
+ gap: 12px;
4471
+ padding: 12px 16px;
4472
+ border-bottom: 1px solid var(--ds-border);
4473
+ }
4474
+ .teams-edit-head h2 {
4475
+ margin: 0;
4476
+ font-size: 15px;
4477
+ font-weight: 600;
4478
+ min-width: 0;
4479
+ overflow: hidden;
4480
+ text-overflow: ellipsis;
4481
+ white-space: nowrap;
4482
+ }
4483
+ .teams-edit-scroll {
4484
+ flex: 1;
4485
+ min-height: 0;
4486
+ overflow-y: auto;
4487
+ }
4488
+ .teams-edit-scroll .agent-settings-md-editor {
4489
+ min-height: 160px;
4490
+ }
4491
+ .teams-edit-actions {
4492
+ display: flex;
4493
+ flex-wrap: wrap;
4494
+ gap: 8px;
4495
+ padding-top: 4px;
4496
+ }
4497
+ .teams-footer-meta {
4498
+ display: block;
4499
+ padding: 4px 12px 0;
4500
+ font-size: 12px;
4501
+ color: var(--ds-muted);
4502
+ line-height: 1.45;
4503
+ }
4504
+ .teams-sidebar-footer .sidebar-nav-row {
4505
+ margin-bottom: 2px;
4506
+ }
4507
+ .teams-sidebar-footer .sidebar-nav-row:last-of-type {
4508
+ margin-bottom: 0;
4509
+ }
4510
+ #teamsToast {
4511
+ position: fixed;
4512
+ left: 50%;
4513
+ bottom: 28px;
4514
+ transform: translateX(-50%) translateY(8px);
4515
+ z-index: 200;
4516
+ padding: 10px 16px;
4517
+ border-radius: 10px;
4518
+ background: var(--ds-text);
4519
+ color: #fff;
4520
+ font-size: 13px;
4521
+ opacity: 0;
4522
+ pointer-events: none;
4523
+ transition: opacity 0.2s ease, transform 0.2s ease;
4524
+ box-shadow: var(--ds-shadow-md);
4525
+ max-width: min(90vw, 420px);
4526
+ text-align: center;
4527
+ }
4528
+ #teamsToast.is-visible {
4529
+ opacity: 1;
4530
+ transform: translateX(-50%) translateY(0);
4531
+ }
4532
+ #teamsToast.is-error {
4533
+ background: var(--ds-danger);
4534
+ }
4535
+ @media (max-width: 768px) {
4536
+ .teams-workspace {
4537
+ flex-direction: column;
4538
+ }
4539
+ .teams-members-panel {
4540
+ width: 100%;
4541
+ max-height: 36vh;
4542
+ border-right: none;
4543
+ border-bottom: 1px solid var(--ds-border);
4544
+ }
4545
+ .teams-edit-panel {
4546
+ width: 100%;
4547
+ max-height: none;
4548
+ border-left: none;
4549
+ border-top: 1px solid var(--ds-border);
4550
+ top: auto;
4551
+ height: 50vh;
4552
+ }
4553
+ }