feat(users): add account limits and API keys
All checks were successful
Build and Publish Docker Image / deploy (push) Successful in 1m43s
All checks were successful
Build and Publish Docker Image / deploy (push) Successful in 1m43s
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
.users-page-body {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.users-hero {
|
||||
@@ -69,11 +70,92 @@
|
||||
|
||||
.users-main-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(320px, .65fr) minmax(0, 1.35fr);
|
||||
grid-template-columns: 320px minmax(0, 1fr);
|
||||
gap: 10px;
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.users-control-panel {
|
||||
min-height: 0;
|
||||
display: grid;
|
||||
grid-template-rows: auto auto minmax(0, 1fr);
|
||||
gap: 8px;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.users-selected-card {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
padding: 8px;
|
||||
background: #ffffff;
|
||||
border-top: 1px solid #808080;
|
||||
border-left: 1px solid #808080;
|
||||
border-right: 1px solid #ffffff;
|
||||
border-bottom: 1px solid #ffffff;
|
||||
}
|
||||
|
||||
.users-selected-card span,
|
||||
.users-selected-card small {
|
||||
color: #444444;
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
}
|
||||
|
||||
.users-selected-card strong {
|
||||
min-height: 18px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
font-size: 16px;
|
||||
line-height: 18px;
|
||||
}
|
||||
|
||||
.users-side-tabs {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.users-tab {
|
||||
min-height: 28px;
|
||||
color: #000000;
|
||||
background: var(--w98-gray);
|
||||
border-top: 2px solid #ffffff;
|
||||
border-left: 2px solid #ffffff;
|
||||
border-right: 2px solid #000000;
|
||||
border-bottom: 2px solid #000000;
|
||||
box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #dfdfdf;
|
||||
font-family: inherit;
|
||||
font-size: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.users-tab.is-active {
|
||||
color: #ffffff;
|
||||
background: #000078;
|
||||
border-top-color: #000000;
|
||||
border-left-color: #000000;
|
||||
border-right-color: #ffffff;
|
||||
border-bottom-color: #ffffff;
|
||||
}
|
||||
|
||||
.users-tab-panel {
|
||||
display: none;
|
||||
min-height: 0;
|
||||
padding: 8px;
|
||||
background: #ffffff;
|
||||
border-top: 1px solid #808080;
|
||||
border-left: 1px solid #808080;
|
||||
border-right: 1px solid #ffffff;
|
||||
border-bottom: 1px solid #ffffff;
|
||||
}
|
||||
|
||||
.users-tab-panel.is-active {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
align-content: start;
|
||||
}
|
||||
|
||||
.users-panel {
|
||||
min-height: 0;
|
||||
display: flex;
|
||||
@@ -97,6 +179,11 @@
|
||||
border-bottom: 1px solid #b0b0b0;
|
||||
}
|
||||
|
||||
.users-panel-header.compact {
|
||||
margin: -8px -8px 0;
|
||||
min-height: 30px;
|
||||
}
|
||||
|
||||
.users-panel-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -194,13 +281,13 @@
|
||||
|
||||
.users-toolbar-grid {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(100px, .6fr));
|
||||
grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(100px, .6fr));
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.users-table-wrap {
|
||||
min-height: 420px;
|
||||
height: 420px;
|
||||
min-height: 360px;
|
||||
height: min(54vh, 520px);
|
||||
overflow: auto;
|
||||
background: #ffffff;
|
||||
border-top: 2px solid #606060;
|
||||
@@ -239,6 +326,7 @@
|
||||
.users-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.96); }
|
||||
.users-table tbody tr:nth-child(even) { background: rgba(240,244,255,.9); }
|
||||
.users-table tbody tr:hover { background: #d8e5f8; }
|
||||
.users-table tbody tr.is-selected { background: #c8d8ff; }
|
||||
|
||||
.users-col-check { width: 30px; }
|
||||
.users-col-actions { width: 136px; }
|
||||
@@ -301,6 +389,70 @@
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.users-empty-note {
|
||||
margin: 0;
|
||||
color: #555555;
|
||||
font-size: 12px;
|
||||
line-height: 15px;
|
||||
}
|
||||
|
||||
.users-key-reveal {
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
padding: 6px;
|
||||
background: #ffffcc;
|
||||
border-top: 1px solid #808080;
|
||||
border-left: 1px solid #808080;
|
||||
border-right: 1px solid #ffffff;
|
||||
border-bottom: 1px solid #ffffff;
|
||||
}
|
||||
|
||||
.users-key-reveal span {
|
||||
font-size: 12px;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.users-key-list {
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.users-key-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 6px;
|
||||
background: #f6f6f6;
|
||||
border-top: 1px solid #ffffff;
|
||||
border-left: 1px solid #ffffff;
|
||||
border-right: 1px solid #b0b0b0;
|
||||
border-bottom: 1px solid #b0b0b0;
|
||||
}
|
||||
|
||||
.users-key-row div {
|
||||
min-width: 0;
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
.users-key-row strong,
|
||||
.users-key-row span {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.users-key-row span {
|
||||
color: #555555;
|
||||
font-size: 11px;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.users-key-row.is-revoked {
|
||||
opacity: .62;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.users-main-grid,
|
||||
.users-hero {
|
||||
|
||||
Reference in New Issue
Block a user