Expand request review tooling and KB
This commit is contained in:
parent
ab1dfbf029
commit
cae21b61b7
16 changed files with 1258 additions and 241 deletions
|
|
@ -448,6 +448,12 @@ body {
|
|||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
align-items: start;
|
||||
gap: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.launcher-request-admin-request-row.is-selected {
|
||||
border-color: #63a6f2;
|
||||
box-shadow: 0 0 0 1px rgba(99, 166, 242, 0.45);
|
||||
}
|
||||
|
||||
.launcher-request-admin-request-copy {
|
||||
|
|
@ -456,6 +462,12 @@ body {
|
|||
gap: 5px;
|
||||
}
|
||||
|
||||
.launcher-request-admin-request-rationale {
|
||||
color: #d7e7ff;
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.launcher-request-admin-request-title,
|
||||
.launcher-request-admin-log-title {
|
||||
color: #eef6ff;
|
||||
|
|
@ -500,6 +512,65 @@ body {
|
|||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.launcher-request-admin-editor-card {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.launcher-request-admin-editor {
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
min-height: 0;
|
||||
overflow: auto;
|
||||
max-height: 58dvh;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.launcher-request-admin-editor-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.launcher-request-admin-tag-grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.launcher-request-admin-tag-toggle {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.launcher-request-admin-tag-toggle.is-active {
|
||||
border-color: #4fa87e;
|
||||
background: rgba(19, 73, 50, 0.88);
|
||||
color: #b7f0d5;
|
||||
}
|
||||
|
||||
.launcher-request-admin-analysis-item {
|
||||
display: grid;
|
||||
gap: 10px;
|
||||
padding: 12px;
|
||||
border: 1px solid #365782;
|
||||
border-radius: 12px;
|
||||
background: rgba(8, 16, 31, 0.72);
|
||||
}
|
||||
|
||||
.launcher-request-admin-analysis-head {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: start;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.launcher-request-admin-textarea {
|
||||
min-height: 96px;
|
||||
}
|
||||
|
||||
.launcher-request-admin-textarea-sm {
|
||||
min-height: 74px;
|
||||
}
|
||||
|
||||
.launcher-request-composer-label {
|
||||
color: #d7e7ff;
|
||||
font-size: 12px;
|
||||
|
|
@ -680,6 +751,12 @@ body {
|
|||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.launcher-request-entry-review-note {
|
||||
color: #ffd5b0;
|
||||
font-size: 12px;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.launcher-request-entry-meta,
|
||||
.launcher-request-empty {
|
||||
color: #9fb8e5;
|
||||
|
|
@ -1934,6 +2011,15 @@ button.danger:not(:disabled):hover {
|
|||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.launcher-request-admin-editor-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.launcher-request-admin-analysis-head {
|
||||
grid-template-columns: 1fr;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.launcher-request-filter {
|
||||
min-width: 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue