File size: 920 Bytes
bae9410 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
.model-title-with-icon {
flex: 1;
display: flex;
align-items: center;
gap: 0.375rem;
line-height: 16px;
}
.model-title-with-icon:is(a) {
outline: none !important;
}
.model-title-with-icon .model-name {
font-weight: 500;
}
.model-title-with-icon .model-provider {
margin-left: 0.25rem;
opacity: 0.65;
font-size: 85%;
}
.model-title-with-icon.disabled {
opacity: 0.5;
}
.model-title-with-icon .model-icon {
opacity: 0.5;
}
.right-icon {
margin-left: auto;
}
.badge {
margin-left: auto;
line-height: 16px;
font-size: 11px;
border-radius: 2px;
padding: 0 5px;
border: 1px solid var(--vscode-contrastBorder);
}
button > .model-title-with-icon .model-name {
font-weight: normal;
}
button > .model-title-with-icon .model-icon,
button > .model-title-with-icon .model-provider,
button > .model-title-with-icon .badge {
display: none;
}
|