Skip to content

Commit

Permalink
Merge pull request #1782 from nextcloud/backport/1711/stable21
Browse files Browse the repository at this point in the history
[stable21] Some Design fixes
  • Loading branch information
juliusknorr authored Jul 26, 2021
2 parents fd26c1d + c2fb29c commit 15e21a0
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 31 deletions.
6 changes: 3 additions & 3 deletions js/editor-rich.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/editor-rich.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions js/editor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/editor.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/files.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/files.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/public.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/public.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/text.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/components/EditorWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -575,11 +575,12 @@ export default {

.save-status {
display: inline-flex;
align-items: center;
padding: 0;
padding-right: 12px;
text-overflow: ellipsis;
color: var(--color-text-lighter);
position: relative;
top: 10px;
min-width: 85px;

&.error {
background-color: var(--color-error);
Expand All @@ -598,7 +599,6 @@ export default {
}

#editor-session-list {
padding-right: 16px;
display: flex;

input, div {
Expand Down
12 changes: 2 additions & 10 deletions src/components/MenuBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -331,11 +331,11 @@ export default {
top: 0;
display: flex;
justify-content: flex-end;
z-index: 10010; // above modal-header so buttons are clickable
z-index: 10021; // above modal-header and menububble so menubar is always on top
background-color: var(--color-main-background-translucent);
-webkit-backdrop-filter: var(--background-blur);
backdrop-filter: var(--background-blur);
height: 50px;
min-height: 50px; // important for mobile so that the buttons are always inside the container
padding-top:3px;
padding-bottom: 3px;

Expand Down Expand Up @@ -405,14 +405,6 @@ export default {
opacity: .4;
}
}

&.icon-redo {
margin-right: 22px;
}

&.icon-ul {
margin-left: 22px;
}
}

.menubar .submenu {
Expand Down

0 comments on commit 15e21a0

Please sign in to comment.