Skip to content

Commit

Permalink
fixup! Bump @nextcloud/vue from 1.5.0 to 2.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
  • Loading branch information
ChristophWurst authored and GretaD committed Sep 1, 2020
1 parent c34f03b commit d7beadc
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
34 changes: 17 additions & 17 deletions css/mail.scss
Original file line number Diff line number Diff line change
Expand Up @@ -100,30 +100,30 @@
/* app navigation */

/* do not display empty folders in the sidebar */
#app-navigation .empty {
.app-navigation .empty {
display: none;
}

#app-navigation .navigation-account:not(:first-child) {
.app-navigation .navigation-account:not(:first-child) {
margin-top: 22px;
}


/* do not overlap collapse icon with special use icon */
#app-navigation .special-inbox .collapse,
#app-navigation .special-drafts .collapse,
#app-navigation .special-sent .collapse,
#app-navigation .special-trash .collapse {
.app-navigation .special-inbox .collapse,
.app-navigation .special-drafts .collapse,
.app-navigation .special-sent .collapse,
.app-navigation .special-trash .collapse {
display: none !important;
}
#app-navigation .special-inbox:hover .collapse,
#app-navigation .special-inbox:focus .collapse,
#app-navigation .special-drafts:hover .collapse,
#app-navigation .special-drafts:focus .collapse,
#app-navigation .special-sent:hover .collapse,
#app-navigation .special-sent:focus .collapse,
#app-navigation .special-trash:hover .collapse,
#app-navigation .special-trash:focus .collapse {
.app-navigation .special-inbox:hover .collapse,
.app-navigation .special-inbox:focus .collapse,
.app-navigation .special-drafts:hover .collapse,
.app-navigation .special-drafts:focus .collapse,
.app-navigation .special-sent:hover .collapse,
.app-navigation .special-sent:focus .collapse,
.app-navigation .special-trash:hover .collapse,
.app-navigation .special-trash:focus .collapse {
display: inline-block !important;
}

Expand Down Expand Up @@ -208,12 +208,12 @@
background: radial-gradient(ellipse at top, var(--color-main-background),rgba(255,255,255,0) 70%);
}

#app-navigation .msg.success {
.app-navigation .msg.success {
color: #fff;
background-color: var(--color-success);
padding: 3px;
}
#app-navigation .msg.error {
.app-navigation .msg.error {
color: #fff;
background-color: var(--color-error);
padding: 3px;
Expand Down Expand Up @@ -336,7 +336,7 @@

// FIXES for core apps.scss

#app-navigation {
.app-navigation {
> ul {
> .navigation-account > li,
> .navigation-account > .folders > li,
Expand Down
4 changes: 2 additions & 2 deletions src/components/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ export default {
}
#header,
#app-navigation,
.app-navigation,
#reply-composer,
#forward-button,
#mail-message-has-blocked-content,
Expand All @@ -462,7 +462,7 @@ export default {
.mail-message-attachments {
display: none !important;
}
#app-content {
.app-content {
margin-left: 0 !important;
}
.mail-message-body {
Expand Down
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default {
</script>
<style lang="scss" scoped>
::v-deep #app-content #app-content-wrapper .app-content-details {
::v-deep .app-content #app-content-wrapper .app-content-details {
margin: 0 auto;
max-width: 900px;
display: flex;
Expand Down

0 comments on commit d7beadc

Please sign in to comment.