mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-07 05:34:17 +00:00
85 lines
1.3 KiB
CSS
85 lines
1.3 KiB
CSS
|
|
.api-token-section {
|
||
|
|
padding: 8px 20px 16px;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-header {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
gap: 12px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-hint {
|
||
|
|
margin: 0;
|
||
|
|
font-size: 12.5px;
|
||
|
|
opacity: 0.7;
|
||
|
|
flex: 1;
|
||
|
|
min-width: 200px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-row {
|
||
|
|
border: 1px solid rgba(128, 128, 128, 0.18);
|
||
|
|
border-radius: 8px;
|
||
|
|
padding: 10px 12px;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 8px;
|
||
|
|
transition: opacity 0.15s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-row.disabled {
|
||
|
|
opacity: 0.55;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-row-head {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: space-between;
|
||
|
|
gap: 8px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-name-wrap {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
gap: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-name {
|
||
|
|
font-weight: 600;
|
||
|
|
font-size: 13.5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-created {
|
||
|
|
font-size: 11px;
|
||
|
|
opacity: 0.55;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-actions {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-value-wrap {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 6px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.api-token-value {
|
||
|
|
flex: 1;
|
||
|
|
min-width: 0;
|
||
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||
|
|
font-size: 12.5px;
|
||
|
|
padding: 4px 8px;
|
||
|
|
background: rgba(128, 128, 128, 0.08);
|
||
|
|
border-radius: 4px;
|
||
|
|
word-break: break-all;
|
||
|
|
}
|