Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
723 changes: 462 additions & 261 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"process": "^0.11.10",
"ramda": "^0.32.0",
"raw-loader": "^4.0.2",
"stylelint": "^16.26.1",
"stylelint": "^17.1.1",
"uuid": "^14.0.0",
"v-tooltip": "^2.1.3",
"vue": "^2.7.16",
Expand All @@ -82,7 +82,7 @@
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/stylelint-config": "^3.1.1",
"@nextcloud/stylelint-config": "^3.2.1",
"@playwright/test": "^1.59.1",
"@vitejs/plugin-vue2": "^2.3.4",
"@vue/test-utils": "^1.3.6",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ComposerSessionIndicator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/variables';
@use '../../css/variables.scss';

.composer-session {
position: fixed;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/variables';
@use '../../css/variables.scss';

.v-popover > .trigger > .action-item {
border-radius: 22px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/MessageAttachment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/variables';
@use '../../css/variables.scss';

@media screen and (max-width: #{variables.$breakpoint-mobile}) {
.attachment{
Expand Down
2 changes: 1 addition & 1 deletion src/components/MessageAttachments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default {
</script>

<style lang="scss">
@use '../../css/variables';
@use '../../css/variables.scss';

.attachments {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/components/MessageLoadingSkeleton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/variables';
@use '../../css/variables.scss';

/* skeleton */
.message-loading-skeleton {
Expand Down
8 changes: 4 additions & 4 deletions src/components/MessagePlainTextBody.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ export default {

<style lang="scss">
.quoted-text {
color: var(--color-text-maxcontrast)
color: var(--color-text-maxcontrast);

summary {
cursor: pointer
cursor: pointer;
}
}
</style>
Expand All @@ -114,10 +114,10 @@ export default {
}

.mail-signature, .quoted {
color: var(--color-text-maxcontrast)
color: var(--color-text-maxcontrast);

summary {
cursor: pointer
cursor: pointer;
}
}
</style>
2 changes: 1 addition & 1 deletion src/components/NewMessageModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/variables';
@use '../../css/variables.scss';

@media only screen and (max-width: 600px) {
:deep(.modal-container) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/NoMessageSelected.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/fluid';
@use '../../css/fluid.scss';

.no-message-selected {
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions src/components/PhishingWarning.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/variables';
@use '../../css/variables.scss';

.phishing-warning {
background-color: rgba(var(--color-warning-rgb), 0.2);
Expand All @@ -86,7 +86,7 @@ export default {
list-style-position: inside;
list-style-type: disc;
&__item {
word-wrap: break-word;
overflow-wrap: break-word;
}
}
&__links {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Thread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ export default {
</script>

<style lang="scss">
@use '../../css/variables';
@use '../../css/variables.scss';

#mail-message {
width: 100%;
Expand Down Expand Up @@ -719,7 +719,7 @@ export default {
color: #07d;
border-bottom: var(--border-width-input) dotted #07d;
text-decoration: none;
word-wrap: break-word;
overflow-wrap: break-word;
}

/* Show action button label and move icon to the left
Expand Down
4 changes: 2 additions & 2 deletions src/directives/drag-and-drop/styles/drag-and-drop.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@use 'draggable-envelope';
@use 'droppable-mailbox';
@use 'draggable-envelope.scss';
@use 'droppable-mailbox.scss';
2 changes: 1 addition & 1 deletion src/views/Setup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default {
</script>

<style lang="scss" scoped>
@use '../../css/fluid';
@use '../../css/fluid.scss';

.setup {
/* make sure the background image covers everything */
Expand Down
Loading