[UX] #577 focus effective access on selected user
This commit is contained in:
@@ -177,6 +177,10 @@ body {
|
||||
}
|
||||
|
||||
@media (max-width: 920px) {
|
||||
.effective-user-focus dl {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.rw-menu-panel {
|
||||
position: static;
|
||||
}
|
||||
@@ -665,6 +669,114 @@ body {
|
||||
margin-top: .25rem;
|
||||
}
|
||||
|
||||
.effective-workbench {
|
||||
background: var(--rw-surface);
|
||||
border: 1px solid var(--rw-border);
|
||||
border-radius: 8px;
|
||||
box-shadow: var(--rw-shadow);
|
||||
margin-bottom: 1rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.effective-tabs {
|
||||
background: var(--rw-surface-muted);
|
||||
border-bottom: 1px solid var(--rw-border);
|
||||
display: flex;
|
||||
gap: .25rem;
|
||||
padding: .5rem;
|
||||
}
|
||||
|
||||
.effective-tab {
|
||||
background: transparent;
|
||||
border: 0;
|
||||
border-radius: 6px;
|
||||
color: var(--rw-muted);
|
||||
font-size: .88rem;
|
||||
font-weight: 800;
|
||||
padding: .55rem .7rem;
|
||||
}
|
||||
|
||||
.effective-tab:hover,
|
||||
.effective-tab:focus,
|
||||
.effective-tab.is-active {
|
||||
background: var(--rw-surface);
|
||||
color: var(--rw-primary);
|
||||
}
|
||||
|
||||
.effective-pane {
|
||||
min-width: 0;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.effective-user-focus {
|
||||
background: var(--rw-primary-soft);
|
||||
border: 1px solid color-mix(in srgb, var(--rw-primary) 35%, var(--rw-border));
|
||||
border-radius: 8px;
|
||||
margin-bottom: 1rem;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.effective-user-focus-heading strong,
|
||||
.effective-user-focus-heading small {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.effective-user-focus-heading strong {
|
||||
font-size: 1.2rem;
|
||||
margin-top: .25rem;
|
||||
}
|
||||
|
||||
.effective-user-focus-heading small {
|
||||
color: var(--rw-muted);
|
||||
margin-top: .15rem;
|
||||
}
|
||||
|
||||
.effective-user-focus dl {
|
||||
display: grid;
|
||||
gap: .7rem;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
.effective-user-focus dl > div {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.effective-user-focus dt {
|
||||
color: var(--rw-muted);
|
||||
font-size: .75rem;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.effective-user-focus dd {
|
||||
font-size: .86rem;
|
||||
font-weight: 700;
|
||||
margin: .25rem 0 0;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
.effective-user-focus-footer {
|
||||
align-items: center;
|
||||
border-top: 1px solid var(--rw-border);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-size: .84rem;
|
||||
gap: .75rem;
|
||||
justify-content: space-between;
|
||||
padding-top: .75rem;
|
||||
}
|
||||
|
||||
.effective-user-focus-footer a {
|
||||
color: var(--rw-primary);
|
||||
font-weight: 800;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.effective-table-detail {
|
||||
border-top: 1px solid var(--rw-border);
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.setup-steps {
|
||||
color: var(--rw-muted);
|
||||
margin: 0;
|
||||
@@ -1475,6 +1587,18 @@ body {
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.effective-tabs {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.effective-tab {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.effective-user-focus dl {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.schema-summary {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user