mirror of https://github.com/go-gitea/gitea.git
Fix flash message for flex-container (#30657)
This commit is contained in:
parent
9b7af4340c
commit
dd2aaadce3
|
@ -1,11 +1,9 @@
|
||||||
{{template "base/head" .ctxData}}
|
{{template "base/head" .ctxData}}
|
||||||
<div role="main" aria-label="{{.ctxData.Title}}" class="page-content {{.pageClass}}">
|
<div role="main" aria-label="{{.ctxData.Title}}" class="page-content {{.pageClass}}">
|
||||||
<div class="ui container">
|
|
||||||
{{template "base/alert" .ctxData}}
|
|
||||||
</div>
|
|
||||||
<div class="ui container fluid padded flex-container">
|
<div class="ui container fluid padded flex-container">
|
||||||
{{template "admin/navbar" .ctxData}}
|
{{template "admin/navbar" .ctxData}}
|
||||||
<div class="flex-container-main">
|
<div class="flex-container-main">
|
||||||
|
{{template "base/alert" .ctxData}}
|
||||||
{{/* block: admin-setting-content */}}
|
{{/* block: admin-setting-content */}}
|
||||||
|
|
||||||
{{if false}}{{/* to make html structure "likely" complete to prevent IDE warnings */}}
|
{{if false}}{{/* to make html structure "likely" complete to prevent IDE warnings */}}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{{template "base/head" .}}
|
{{template "base/head" .}}
|
||||||
<div role="main" aria-label="{{.Title}}" class="page-content dashboard feeds">
|
<div role="main" aria-label="{{.Title}}" class="page-content dashboard feeds">
|
||||||
{{template "user/dashboard/navbar" .}}
|
{{template "user/dashboard/navbar" .}}
|
||||||
{{template "base/alert" .}}
|
|
||||||
<div class="ui container flex-container">
|
<div class="ui container flex-container">
|
||||||
<div class="flex-container-main">
|
<div class="flex-container-main">
|
||||||
|
{{template "base/alert" .}}
|
||||||
{{template "user/heatmap" .}}
|
{{template "user/heatmap" .}}
|
||||||
{{template "user/dashboard/feeds" .}}
|
{{template "user/dashboard/feeds" .}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -495,12 +495,6 @@ img.ui.avatar,
|
||||||
margin-top: calc(var(--page-spacing) - 1rem);
|
margin-top: calc(var(--page-spacing) - 1rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* add horizontal margin to elements that are outside top-level of .flex-container or .ui.container */
|
|
||||||
.page-content > .flash-message {
|
|
||||||
margin-left: var(--page-margin-x);
|
|
||||||
margin-right: var(--page-margin-x);
|
|
||||||
}
|
|
||||||
|
|
||||||
.ui.form .fields.error .field textarea,
|
.ui.form .fields.error .field textarea,
|
||||||
.ui.form .fields.error .field select,
|
.ui.form .fields.error .field select,
|
||||||
.ui.form .fields.error .field input:not([type]),
|
.ui.form .fields.error .field input:not([type]),
|
||||||
|
|
Loading…
Reference in New Issue