debug und oidc
This commit is contained in:
@@ -239,6 +239,71 @@ body {
|
||||
font-size: 22px;
|
||||
box-shadow: 0 16px 32px rgba(255, 90, 61, 0.28);
|
||||
z-index: 50;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.debug-modal {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
display: none;
|
||||
z-index: 80;
|
||||
}
|
||||
.debug-modal.is-open { display: block; }
|
||||
.debug-modal__backdrop {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: rgba(10, 12, 20, 0.35);
|
||||
}
|
||||
.debug-modal__panel {
|
||||
position: relative;
|
||||
max-width: 980px;
|
||||
width: calc(100% - 40px);
|
||||
margin: 60px auto;
|
||||
padding: 16px;
|
||||
}
|
||||
.debug-modal__header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.debug-modal__close {
|
||||
background: transparent;
|
||||
border: none;
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.debug-modal__body {
|
||||
display: grid;
|
||||
grid-template-columns: 220px 1fr;
|
||||
gap: 16px;
|
||||
}
|
||||
.debug-modal__list ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 8px 0 0;
|
||||
display: grid;
|
||||
gap: 6px;
|
||||
}
|
||||
.debug-modal__list a {
|
||||
text-decoration: none;
|
||||
color: var(--text);
|
||||
padding: 6px 8px;
|
||||
border-radius: 8px;
|
||||
display: block;
|
||||
}
|
||||
.debug-modal__list a:hover { background: var(--panel-2); }
|
||||
.debug-modal__content pre {
|
||||
background: var(--panel-2);
|
||||
padding: 10px;
|
||||
border-radius: 8px;
|
||||
max-height: 520px;
|
||||
overflow: auto;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
@media (max-width: 800px) {
|
||||
.debug-modal__body { grid-template-columns: 1fr; }
|
||||
}
|
||||
|
||||
.muted { color: var(--muted); }
|
||||
|
||||
Reference in New Issue
Block a user