gitea user and pswd, some pages removed, logs
This commit is contained in:
+71
-5
@@ -838,12 +838,28 @@ input[readonly] {
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
/* Pozn.: .service-actions je vždy na <td>. display:flex na buňce ji vyřadí
|
||||
z layoutu tabulky (přestane být table-cell), zhroutí šířky sloupců a řádek
|
||||
"nesedí". Necháme buňku jako table-cell a obsah srovnáme inline-flex prvky. */
|
||||
.service-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
white-space: nowrap;
|
||||
width: auto;
|
||||
min-width: 250px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.service-actions > a,
|
||||
.service-actions > form,
|
||||
.service-actions > button,
|
||||
.service-actions > .btn,
|
||||
.service-actions > .action-menu {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.service-actions > * + * {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.service-actions .btn {
|
||||
@@ -1005,6 +1021,44 @@ pre {
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
/* Kompaktní log v řádku tabulky (globální prohlížeč logů). */
|
||||
.log-inline {
|
||||
margin: 0;
|
||||
min-height: 0;
|
||||
max-height: 160px;
|
||||
padding: 10px 12px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
/* Zvýraznění řádku, na který se uživatel proklikl z globálního prohlížeče logů. */
|
||||
.job-log-entry:target {
|
||||
outline: 3px solid var(--primary);
|
||||
outline-offset: 3px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
/* Rozbalovací formulář pro změnu Gitea jména/hesla v tabulce uživatelů. */
|
||||
.gitea-cred {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.gitea-cred summary {
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: var(--primary);
|
||||
}
|
||||
|
||||
.gitea-cred .metadata-form {
|
||||
margin-top: 8px;
|
||||
min-width: 200px;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.gitea-cred input {
|
||||
min-height: 32px;
|
||||
}
|
||||
|
||||
.log-stdout {
|
||||
background: #102a3a;
|
||||
color: #edf6f9;
|
||||
@@ -1200,9 +1254,21 @@ pre {
|
||||
}
|
||||
|
||||
.service-actions {
|
||||
align-items: stretch;
|
||||
flex-direction: column;
|
||||
min-width: 180px;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.service-actions > a,
|
||||
.service-actions > form,
|
||||
.service-actions > button,
|
||||
.service-actions > .btn,
|
||||
.service-actions > .action-menu {
|
||||
display: flex;
|
||||
margin: 0 0 8px;
|
||||
}
|
||||
|
||||
.service-actions > *:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.service-actions .btn,
|
||||
|
||||
Reference in New Issue
Block a user