Skip to content
Snippets Groups Projects
Commit be111f1f authored by Ron Lucke's avatar Ron Lucke
Browse files

Button Position im Wiki falsch

Closes #4894

Merge request studip/studip!3667
parent 687e2871
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,7 @@ article.studip { ...@@ -119,7 +119,7 @@ article.studip {
} }
> footer { > footer {
text-align: right; text-align: left;
border-top: 1px solid var(--color--content-box-border); border-top: 1px solid var(--color--content-box-border);
padding: $article-padding; padding: $article-padding;
margin: $article-padding (-$article-padding) (-$article-padding) (-$article-padding); margin: $article-padding (-$article-padding) (-$article-padding) (-$article-padding);
......
...@@ -115,14 +115,13 @@ $button-icons: ( ...@@ -115,14 +115,13 @@ $button-icons: (
display: inline-flex; display: inline-flex;
gap: 5px; gap: 5px;
list-style: none; list-style: none;
margin: 0 0.8em 0 0; margin: 0 0.8em;
padding: 0; padding: 5px 0;
vertical-align: middle; vertical-align: middle;
button, button,
.button { .button {
margin-left: 0; margin: 0;
margin-right: 0;
} }
} }
......
...@@ -200,3 +200,7 @@ article.studip.wiki { ...@@ -200,3 +200,7 @@ article.studip.wiki {
padding-left: calc(var(--avatar-small) + 1ex); padding-left: calc(var(--avatar-small) + 1ex);
} }
} }
p.last-save-date {
text-indent: 1ex;
}
\ No newline at end of file
...@@ -24,14 +24,14 @@ ...@@ -24,14 +24,14 @@
<input type="checkbox" v-model="autosave"> <input type="checkbox" v-model="autosave">
{{ $gettext('Automatisches Speichern aktivieren.') }} {{ $gettext('Automatisches Speichern aktivieren.') }}
</label> </label>
<div> <p class="last-save-date">
{{ $gettext('Zuletzt gespeichert') }}: {{ $gettext('Zuletzt gespeichert') }}:
<studip-date-time :timestamp="Math.floor(lastSaveDate / 1000)" <studip-date-time :timestamp="Math.floor(lastSaveDate / 1000)"
:relative="true" :relative="true"
></studip-date-time> ></studip-date-time>
</div> </p>
<div data-dialog-button=""> <footer data-dialog-button="">
<button class="button" <button class="button"
:title="isChanged ? $gettext('Den aktuellen Stand speichern.') : $gettext('Der aktuelle Stand wurde bereits gespeichert.')" :title="isChanged ? $gettext('Den aktuellen Stand speichern.') : $gettext('Der aktuelle Stand wurde bereits gespeichert.')"
@click="toggleSecurityHandler(false)" @click="toggleSecurityHandler(false)"
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
> >
{{ $gettextInterpolate($gettext('Schreibmodus an %{name} übergeben'), { name: user.fullname }, true) }} {{ $gettextInterpolate($gettext('Schreibmodus an %{name} übergeben'), { name: user.fullname }, true) }}
</button> </button>
</div> </footer>
</form> </form>
<div v-if="!isEditing"> <div v-if="!isEditing">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment