Skip to content

Commit

Permalink
Merge pull request #6404 from nextcloud/fix/headings_papercuts
Browse files Browse the repository at this point in the history
Fix headings papercuts
  • Loading branch information
mejo- authored Sep 16, 2024
2 parents eb05b34 + 90696a2 commit c48d7ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/components/Menu/MenuBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ export default {
background-color: var(--color-main-background-translucent);
backdrop-filter: var(--background-blur);
max-height: var(--default-clickable-area); // important for mobile so that the buttons are always inside the container
border-bottom: 1px solid var(--color-border);
padding-top:3px;
padding-bottom: 3px;
Expand Down
3 changes: 3 additions & 0 deletions src/components/Menu/ReadonlyBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ export default defineComponent({
<style scoped>
.text-readonly-bar {
display: flex;
border-bottom: 1px solid var(--color-border);
padding-top: 3px;
padding-bottom: 3px;
}
.text-readonly-bar__entries {
display: flex;
Expand Down
4 changes: 0 additions & 4 deletions src/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@
outline: 2px solid #8cf;
}

/**
*
*/
li.ProseMirror-selectednode {
outline: none;

Expand Down Expand Up @@ -77,7 +74,6 @@ li.ProseMirror-selectednode {

[data-handler='text'] {
background-color: var(--color-main-background);
border-top: 3px solid var(--color-primary-element);
.modal-title {
font-weight: bold;
}
Expand Down

0 comments on commit c48d7ff

Please sign in to comment.