feat: F1 en F2 en Log UI toegevoegd
This commit is contained in:
@@ -459,6 +459,10 @@ button:disabled {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.popup-card {
|
||||
width: min(420px, calc(100vw - 24px));
|
||||
background: var(--color-surface-elevated);
|
||||
@@ -500,6 +504,86 @@ button:disabled {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.settings-card {
|
||||
position: relative;
|
||||
width: min(760px, calc(100vw - 32px));
|
||||
max-height: calc(100vh - 56px);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.settings-tabs {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
padding-bottom: 4px;
|
||||
border-bottom: 1px solid var(--color-border);
|
||||
}
|
||||
|
||||
.settings-tab {
|
||||
background: var(--color-button-secondary-bg);
|
||||
}
|
||||
|
||||
.settings-tab.is-active {
|
||||
border-color: var(--color-accent);
|
||||
background: var(--color-button-hover);
|
||||
}
|
||||
|
||||
.settings-panel {
|
||||
min-height: 180px;
|
||||
}
|
||||
|
||||
.settings-placeholder-title {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.settings-log-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
max-height: 46vh;
|
||||
overflow-y: auto;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
.settings-log-item {
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: var(--radius-sm);
|
||||
padding: 8px 9px;
|
||||
background: var(--color-surface);
|
||||
}
|
||||
|
||||
.settings-log-item.status-failed {
|
||||
border-color: var(--color-danger);
|
||||
}
|
||||
|
||||
.settings-log-title {
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
.settings-log-path {
|
||||
font-size: 13px;
|
||||
margin-bottom: 4px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.settings-log-meta {
|
||||
font-size: 12px;
|
||||
color: var(--color-text-muted);
|
||||
}
|
||||
|
||||
.settings-log-error {
|
||||
margin-top: 5px;
|
||||
font-size: 12px;
|
||||
color: var(--color-danger);
|
||||
}
|
||||
|
||||
.viewer-close {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
|
||||
Reference in New Issue
Block a user