Skip to content

Commit c48d7ff

Browse files
authored
Merge pull request #6404 from nextcloud/fix/headings_papercuts
Fix headings papercuts
2 parents eb05b34 + 90696a2 commit c48d7ff

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/components/Menu/MenuBar.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ export default {
227227
background-color: var(--color-main-background-translucent);
228228
backdrop-filter: var(--background-blur);
229229
max-height: var(--default-clickable-area); // important for mobile so that the buttons are always inside the container
230+
border-bottom: 1px solid var(--color-border);
230231
padding-top:3px;
231232
padding-bottom: 3px;
232233

src/components/Menu/ReadonlyBar.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ export default defineComponent({
4949
<style scoped>
5050
.text-readonly-bar {
5151
display: flex;
52+
border-bottom: 1px solid var(--color-border);
53+
padding-top: 3px;
54+
padding-bottom: 3px;
5255
}
5356
.text-readonly-bar__entries {
5457
display: flex;

src/css/style.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@
2626
outline: 2px solid #8cf;
2727
}
2828

29-
/**
30-
*
31-
*/
3229
li.ProseMirror-selectednode {
3330
outline: none;
3431

@@ -77,7 +74,6 @@ li.ProseMirror-selectednode {
7774

7875
[data-handler='text'] {
7976
background-color: var(--color-main-background);
80-
border-top: 3px solid var(--color-primary-element);
8177
.modal-title {
8278
font-weight: bold;
8379
}

0 commit comments

Comments
 (0)