Skip to content

Commit

Permalink
fix(titlebar): align buttons to the right
Browse files Browse the repository at this point in the history
Also add same top and right margin to titlebar.

Signed-off-by: Jonas <jonas@freesources.org>
  • Loading branch information
mejo- committed Sep 13, 2023
1 parent 44e8148 commit 244fda6
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 29 deletions.
8 changes: 3 additions & 5 deletions cypress/e2e/pages.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,10 @@ describe('Page', function() {
})
})

describe.only('Full width view', function() {
describe('Full width view', function() {
it('Allows to toggle persistent full-width view', function() {
cy.visit('/apps/collectives/Our%20Garden/Day%202')
cy.get('#titleform').should('have.css', 'max-width', '670px')
cy.get('#titleform').invoke('outerWidth').should('eq', 670)
cy.get('#titleform').should('have.css', 'max-width', '100%')
cy.get('#read-only-editor').invoke('outerWidth').should('eq', 670)

// Set full width mode
Expand All @@ -282,12 +281,11 @@ describe('Page', function() {
cy.contains('li.action', 'Full width')
.click()
cy.get('#titleform').should('have.css', 'max-width', 'none')
cy.get('#titleform').invoke('outerWidth').should('be.greaterThan', 700)
cy.get('#read-only-editor').invoke('outerWidth').should('be.greaterThan', 700)

// Reload to check persistence with browser storage
cy.reload()
cy.get('#titleform').invoke('outerWidth').should('be.greaterThan', 700)
cy.get('#titleform').should('have.css', 'max-width', '100%')
cy.get('#read-only-editor').invoke('outerWidth').should('be.greaterThan', 700)

// Unset full width mode
Expand Down
2 changes: 1 addition & 1 deletion src/components/Collective.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default {
.page-title {
position: sticky;
top: 0;
padding: 8px 0px 2px 8px;
padding: 8px 8px 2px 8px;
display: flex;
align-items: center;
background-color: var(--color-main-background);
Expand Down
52 changes: 29 additions & 23 deletions src/components/Page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,29 +77,31 @@
@blur="renamePage()">
</form>

<!-- Edit button if editable -->
<EditButton v-if="currentCollectiveCanEdit"
:mobile="isMobile"
class="edit-button" />

<!-- Actions menu -->
<PageActionMenu :show-files-link="!isPublic"
:page-id="currentPage.id"
:parent-id="currentPage.parentId"
:timestamp="currentPage.timestamp"
:last-user-id="currentPage.lastUserId"
:last-user-display-name="currentPage.lastUserDisplayName"
:is-landing-page="isLandingPage"
:is-template="isTemplatePage" />

<!-- Sidebar toggle -->
<NcActions v-if="!showing('sidebar') && !isMobile">
<NcActionButton icon="icon-menu-sidebar"
:aria-label="t('collectives', 'Open page sidebar')"
aria-controls="app-sidebar-vue"
:close-after-click="true"
@click="toggle('sidebar')" />
</NcActions>
<div class="titlebar-buttons">
<!-- Edit button if editable -->
<EditButton v-if="currentCollectiveCanEdit"
:mobile="isMobile"
class="edit-button" />

<!-- Actions menu -->
<PageActionMenu :show-files-link="!isPublic"
:page-id="currentPage.id"
:parent-id="currentPage.parentId"
:timestamp="currentPage.timestamp"
:last-user-id="currentPage.lastUserId"
:last-user-display-name="currentPage.lastUserDisplayName"
:is-landing-page="isLandingPage"
:is-template="isTemplatePage" />

<!-- Sidebar toggle -->
<NcActions v-if="!showing('sidebar') && !isMobile">
<NcActionButton icon="icon-menu-sidebar"
:aria-label="t('collectives', 'Open page sidebar')"
aria-controls="app-sidebar-vue"
:close-after-click="true"
@click="toggle('sidebar')" />
</NcActions>
</div>
</h1>
<LandingPageWidgets v-if="isLandingPage" />
<TextEditor :key="`text-editor-${currentPage.id}`"
Expand Down Expand Up @@ -308,6 +310,10 @@ export default {
form {
flex: auto;
}
.titlebar-buttons {
display: flex;
}
}
</style>

Expand Down
5 changes: 5 additions & 0 deletions src/css/editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
max-width: var(--text-editor-max-width);
margin: auto;

&.page-title {
max-width: 100%;
margin: 0 0 0 max(0px, calc(50% - (var(--text-editor-max-width) / 2)));
}

// Editor document status bar
.document-status {
max-width: var(--text-editor-max-width);
Expand Down

0 comments on commit 244fda6

Please sign in to comment.