| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- [data-component="tool-trigger"] {
- content-visibility: auto;
- width: 100%;
- display: flex;
- align-items: center;
- align-self: stretch;
- gap: 0px;
- justify-content: flex-start;
- [data-slot="basic-tool-tool-trigger-content"] {
- width: auto;
- display: flex;
- align-items: center;
- align-self: stretch;
- gap: 8px;
- }
- [data-slot="basic-tool-tool-indicator"] {
- width: 16px;
- height: 16px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- [data-component="spinner"] {
- width: 16px;
- height: 16px;
- }
- }
- [data-slot="basic-tool-tool-spinner"] {
- width: 16px;
- height: 16px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- color: var(--text-weak);
- [data-component="spinner"] {
- width: 16px;
- height: 16px;
- }
- }
- [data-slot="icon-svg"] {
- flex-shrink: 0;
- }
- [data-slot="basic-tool-tool-info"] {
- flex: 0 1 auto;
- min-width: 0;
- font-size: 14px;
- }
- [data-slot="basic-tool-tool-info-structured"] {
- width: auto;
- display: flex;
- align-items: center;
- gap: 8px;
- justify-content: flex-start;
- }
- [data-slot="basic-tool-tool-info-main"] {
- display: flex;
- align-items: baseline;
- gap: 8px;
- min-width: 0;
- overflow: hidden;
- }
- [data-slot="basic-tool-tool-title"] {
- flex-shrink: 0;
- font-family: var(--font-family-sans);
- font-size: 14px;
- font-style: normal;
- font-weight: var(--font-weight-medium);
- line-height: var(--line-height-large);
- letter-spacing: var(--letter-spacing-normal);
- color: var(--text-strong);
- &.capitalize {
- text-transform: capitalize;
- }
- &.agent-title {
- color: var(--text-strong);
- font-weight: var(--font-weight-medium);
- }
- }
- [data-slot="basic-tool-tool-subtitle"] {
- flex-shrink: 1;
- min-width: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-family: var(--font-family-sans);
- font-size: 14px;
- font-style: normal;
- font-weight: var(--font-weight-regular);
- line-height: var(--line-height-large);
- letter-spacing: var(--letter-spacing-normal);
- color: var(--text-base);
- &.clickable {
- cursor: pointer;
- text-decoration: underline;
- transition: color 0.15s ease;
- &:hover {
- color: var(--text-base);
- }
- }
- &.subagent-link {
- color: var(--text-interactive-base);
- text-decoration: none;
- text-underline-offset: 2px;
- font-weight: var(--font-weight-regular);
- &:hover {
- color: var(--text-interactive-base);
- text-decoration: underline;
- }
- &:active {
- color: var(--text-interactive-base);
- }
- &:visited {
- color: var(--text-interactive-base);
- }
- }
- }
- [data-slot="basic-tool-tool-arg"] {
- flex-shrink: 1;
- min-width: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-family: var(--font-family-sans);
- font-size: 14px;
- font-style: normal;
- font-weight: var(--font-weight-regular);
- line-height: var(--line-height-large);
- letter-spacing: var(--letter-spacing-normal);
- color: var(--text-base);
- }
- }
|