Browse Source
fix: edit buttons hidden when toc sidebar is on the right
pull/3168/merge
NGPixel
1 year ago
No known key found for this signature in database
GPG Key ID: 8FDA2F1757F60D63
1 changed files with
7 additions and
3 deletions
-
client/themes/default/components/page.vue
|
|
@ -53,8 +53,8 @@ |
|
|
|
v-col.page-col-content.is-page-header( |
|
|
|
:offset-xl='tocPosition === `left` ? 2 : 0' |
|
|
|
:offset-lg='tocPosition === `left` ? 3 : 0' |
|
|
|
:xl10='tocPosition === `right`' |
|
|
|
:lg9='tocPosition === `right`' |
|
|
|
:xl='tocPosition === `right` ? 10 : false' |
|
|
|
:lg='tocPosition === `right` ? 9 : false' |
|
|
|
style='margin-top: auto; margin-bottom: auto;' |
|
|
|
:class='$vuetify.rtl ? `pr-4` : `pl-4`' |
|
|
|
) |
|
|
@ -736,9 +736,13 @@ export default { |
|
|
|
.page-header-section { |
|
|
|
position: relative; |
|
|
|
|
|
|
|
> .is-page-header { |
|
|
|
position: relative; |
|
|
|
} |
|
|
|
|
|
|
|
.page-edit-shortcuts { |
|
|
|
position: absolute; |
|
|
|
bottom: -14px; |
|
|
|
bottom: -43px; |
|
|
|
right: 10px; |
|
|
|
|
|
|
|
.v-btn { |
|
|
|