mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-13 14:30:25 +00:00
Related issue: https://codeberg.org/forgejo/forgejo/issues/8581 This should be a nice first step towards RTL support. Future PRs can look at updating the tailwind classes, changing some of the icons (arrow left might need to become arrow right in some cases for example, and updating the template files) Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/12491 Reviewed-by: 0ko <0ko@noreply.codeberg.org>
62 lines
1.5 KiB
CSS
62 lines
1.5 KiB
CSS
.page-content.install .install-config-container {
|
|
max-width: 900px;
|
|
margin: auto;
|
|
}
|
|
|
|
.page-content.install form.ui.form .inline.field > label {
|
|
text-align: end;
|
|
width: 30%;
|
|
padding-inline-end: 10px;
|
|
margin-inline-end: 0;
|
|
}
|
|
|
|
.page-content.install .ui.form .field > .help,
|
|
.page-content.install .ui.form .field > .ui.checkbox:first-child,
|
|
.page-content.install .ui.form .field > .right-content {
|
|
margin-inline-start: calc(30% + 5px);
|
|
width: auto;
|
|
}
|
|
|
|
.page-content.install form.ui.form input:not([type="checkbox"],[type="radio"]),
|
|
.page-content.install form.ui.form .ui.selection.dropdown {
|
|
width: 60%;
|
|
}
|
|
|
|
.page-content.install form.ui.form details.optional.field[open] {
|
|
padding-bottom: 10px;
|
|
}
|
|
.page-content.install form.ui.form details.optional.field[open] summary {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.page-content.install form.ui.form details.optional.field * {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.page-content.install form.ui.form .field {
|
|
text-align: start;
|
|
}
|
|
|
|
.page-content.install .ui .reinstall-message {
|
|
width: 70%;
|
|
margin: 20px auto;
|
|
color: var(--color-red);
|
|
text-align: start;
|
|
font-weight: var(--font-weight-semibold);
|
|
}
|
|
|
|
.page-content.install .ui .reinstall-confirm {
|
|
width: 70%;
|
|
text-align: start;
|
|
margin: 10px auto;
|
|
}
|
|
|
|
.page-content.install details.collapsible {
|
|
border: 1px solid var(--color-light-border);
|
|
border-radius: 0.28571429rem;
|
|
}
|
|
.page-content.install .collapsible summary {
|
|
background: transparent;
|
|
margin: auto;
|
|
text-align: center;
|
|
}
|