mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-06 05:04:22 +00:00
60 lines
776 B
CSS
60 lines
776 B
CSS
|
|
.warp-data-table {
|
||
|
|
margin: 5px 0;
|
||
|
|
width: 100%;
|
||
|
|
border-collapse: collapse;
|
||
|
|
}
|
||
|
|
|
||
|
|
.warp-data-table td {
|
||
|
|
padding: 4px 8px;
|
||
|
|
word-break: break-all;
|
||
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.warp-data-table td:first-child {
|
||
|
|
font-family: inherit;
|
||
|
|
font-weight: 500;
|
||
|
|
white-space: nowrap;
|
||
|
|
width: 130px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.row-odd {
|
||
|
|
background: rgba(0, 0, 0, 0.03);
|
||
|
|
}
|
||
|
|
|
||
|
|
body.dark .row-odd {
|
||
|
|
background: rgba(255, 255, 255, 0.04);
|
||
|
|
}
|
||
|
|
|
||
|
|
.zero-margin {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.my-8 {
|
||
|
|
margin: 8px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mt-8 {
|
||
|
|
margin-top: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.my-10 {
|
||
|
|
margin: 10px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.ml-8 {
|
||
|
|
margin-left: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.license-actions {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.license-error {
|
||
|
|
flex: 1;
|
||
|
|
min-width: 0;
|
||
|
|
}
|