Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2021-07-08 16:29:05 +0300
committernpmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>2021-07-08 16:53:31 +0300
commit7172ad1962d099f893146cc0e2a87c4159e20ee7 (patch)
treeeff9385d88416437abac23e1df349eb5a1e4599f /src
parente96f62b5c625233393875430f5caf5b0f5879f9e (diff)
Some Design fixes
Signed-off-by: szaimen <szaimen@e.mail.de> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/EditorWrapper.vue6
-rw-r--r--src/components/MenuBar.vue12
2 files changed, 5 insertions, 13 deletions
diff --git a/src/components/EditorWrapper.vue b/src/components/EditorWrapper.vue
index 3dd9e97d3..ee63d8780 100644
--- a/src/components/EditorWrapper.vue
+++ b/src/components/EditorWrapper.vue
@@ -582,11 +582,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);
@@ -605,7 +606,6 @@ export default {
}
#editor-session-list {
- padding-right: 16px;
display: flex;
input, div {
diff --git a/src/components/MenuBar.vue b/src/components/MenuBar.vue
index efa57dd89..73b83a1da 100644
--- a/src/components/MenuBar.vue
+++ b/src/components/MenuBar.vue
@@ -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;
@@ -405,14 +405,6 @@ export default {
opacity: .4;
}
}
-
- &.icon-redo {
- margin-right: 22px;
- }
-
- &.icon-ul {
- margin-left: 22px;
- }
}
.menubar .submenu {