Skip to content

Commit

Permalink
style: rollback deep style
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Trovic <luka@nextcloud.com>
  • Loading branch information
luka-nextcloud committed Jan 20, 2023
1 parent 757a011 commit 2663fb1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,11 +364,6 @@ Cypress.Commands.add('showHiddenFiles', () => {
cy.get('.modal-container__close').click()
})

Cypress.on(
'uncaught:exception',
err => !err.message.includes('ResizeObserver loop limit exceeded'),
)

Cypress.Commands.add('createDescription', () => {
const url = '**/remote.php/dav/files/**'
cy.intercept({ method: 'PUT', url })
Expand All @@ -381,3 +376,8 @@ Cypress.Commands.add('createDescription', () => {
})
cy.wait('@addDescription')
})

Cypress.on(
'uncaught:exception',
err => !err.message.includes('ResizeObserver loop limit exceeded'),
)
14 changes: 7 additions & 7 deletions src/views/RichWorkspace.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,42 +219,42 @@ export default {
color: var(--color-text-maxcontrast);
}
#rich-workspace:deep(div[contenteditable=false]) {
#rich-workspace div[contenteditable=false] {
width: 100%;
padding: 0px;
background-color: var(--color-main-background);
opacity: 1;
border: none;
}
#rich-workspace:deep(.text-editor) {
#rich-workspace .text-editor {
height: 100%;
position: unset !important;
top: auto !important;
}
#rich-workspace:deep(.text-editor__wrapper) {
#rich-workspace .text-editor__wrapper {
position: unset !important;
overflow: visible;
}
#rich-workspace:deep(.text-editor__main) {
#rich-workspace .text-editor__main {
overflow: visible !important;
}
#rich-workspace:deep(.content-wrapper) {
#rich-workspace .content-wrapper {
overflow: scroll !important;
max-height: calc(40vh - 50px);
padding-left: 10px;
padding-bottom: 10px;
}
#rich-workspace:deep(.text-editor__wrapper .ProseMirror) {
#rich-workspace .text-editor__wrapper .ProseMirror {
padding: 0px;
margin: 0;
}
#rich-workspace:deep(.editor__content) {
#rich-workspace .editor__content {
margin: 0;
}
Expand Down

0 comments on commit 2663fb1

Please sign in to comment.