diff options
author | Mostafa Ahangarha <ahangarha@riseup.net> | 2023-12-19 21:42:52 +0330 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2024-08-29 08:32:47 +0000 |
commit | 723780d18431fad7f653379066796d41ce267cb5 (patch) | |
tree | d30c7a9323b9b82b804750d625d3e4b4100914bc /apps/workflowengine/src | |
parent | 23efda911126a60c9af0198a7c842c726a8a4213 (diff) | |
download | nextcloud-server-723780d18431fad7f653379066796d41ce267cb5.tar.gz nextcloud-server-723780d18431fad7f653379066796d41ce267cb5.zip |
feat: Add bidi support in core directory
Signed-off-by: Mostafa Ahangarha <ahangarha@riseup.net>
Diffstat (limited to 'apps/workflowengine/src')
-rw-r--r-- | apps/workflowengine/src/components/Check.vue | 2 | ||||
-rw-r--r-- | apps/workflowengine/src/components/Checks/RequestTime.vue | 2 | ||||
-rw-r--r-- | apps/workflowengine/src/components/Event.vue | 2 | ||||
-rw-r--r-- | apps/workflowengine/src/components/Rule.vue | 12 | ||||
-rw-r--r-- | apps/workflowengine/src/styles/operation.scss | 10 |
5 files changed, 14 insertions, 14 deletions
diff --git a/apps/workflowengine/src/components/Check.vue b/apps/workflowengine/src/components/Check.vue index 688619865e2..8cc22fc85a1 100644 --- a/apps/workflowengine/src/components/Check.vue +++ b/apps/workflowengine/src/components/Check.vue @@ -186,7 +186,7 @@ export default { & > .v-select, & > .button-vue, & > input[type=text] { - margin-right: 5px; + margin-inline-end: 5px; margin-bottom: 5px; } } diff --git a/apps/workflowengine/src/components/Checks/RequestTime.vue b/apps/workflowengine/src/components/Checks/RequestTime.vue index 9e82c9f99d1..1a09fcbfb31 100644 --- a/apps/workflowengine/src/components/Checks/RequestTime.vue +++ b/apps/workflowengine/src/components/Checks/RequestTime.vue @@ -120,7 +120,7 @@ export default { min-height: 48px; &.timeslot--start { - margin-right: 5px; + margin-inline-end: 5px; width: calc(50% - 5px); } } diff --git a/apps/workflowengine/src/components/Event.vue b/apps/workflowengine/src/components/Event.vue index eb3f87826d8..af00ee9df71 100644 --- a/apps/workflowengine/src/components/Event.vue +++ b/apps/workflowengine/src/components/Event.vue @@ -105,7 +105,7 @@ export default { } .option__title { - margin-left: 5px; + margin-inline-start: 5px; color: var(--color-main-text); } diff --git a/apps/workflowengine/src/components/Rule.vue b/apps/workflowengine/src/components/Rule.vue index bc5d5637600..0056042c118 100644 --- a/apps/workflowengine/src/components/Rule.vue +++ b/apps/workflowengine/src/components/Rule.vue @@ -196,16 +196,16 @@ export default { justify-content: end; button { - margin-left: 5px; + margin-inline-start: 5px; } button:last-child{ - margin-right: 10px; + margin-inline-end: 10px; } } .error-message { float: right; - margin-right: 10px; + margin-inline-end: 10px; } .flow-icon { @@ -230,7 +230,7 @@ export default { .icon-confirm { background-position: right 27px; padding-right: 20px; - margin-right: 20px; + margin-inline-end: 20px; } } .trigger p, .action p { @@ -239,7 +239,7 @@ export default { & > span { min-width: 50px; - text-align: right; + text-align: end; color: var(--color-text-maxcontrast); padding-right: 10px; padding-top: 6px; @@ -265,7 +265,7 @@ export default { border-radius: var(--border-radius); color: var(--color-text-maxcontrast); font-weight: normal; - text-align: left; + text-align: start; font-size: 1em; } diff --git a/apps/workflowengine/src/styles/operation.scss b/apps/workflowengine/src/styles/operation.scss index 9d9f028860b..ea54e605c6e 100644 --- a/apps/workflowengine/src/styles/operation.scss +++ b/apps/workflowengine/src/styles/operation.scss @@ -7,10 +7,10 @@ flex-wrap: wrap; flex-direction: column; flex-grow: 1; - margin-left: -1px; + margin-inline-start: -1px; padding: 10px; border-radius: var(--border-radius-large); - margin-right: 20px; + margin-inline-end: 20px; margin-bottom: 20px; } .actions__item .icon { @@ -33,7 +33,7 @@ .actions__item_options { width: 100%; margin-top: 10px; - padding-left: 60px; + padding-inline-start: 60px; } h3, small { padding: 6px; @@ -61,7 +61,7 @@ small { .actions__item__description { padding-top: 5px; - text-align: left; + text-align: start; width: calc(100% - 105px); small { padding: 0; @@ -70,7 +70,7 @@ small { .icon { width: 50px; margin: 0; - margin-right: 10px; + margin-inline-end: 10px; &:not(.icon-invert) { filter: var(--background-invert-if-bright); } |