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
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default {

&.nav-hidden {
#app-content {
margin-left: 0;
margin-inline-start: 0;
}
}

Expand All @@ -157,7 +157,7 @@ export default {
</style>

<style lang="scss">
@import '../css/print';
@import '../css/print.scss';

.icon-activity {
background-image: url(../img/activity-dark.svg);
Expand Down
2 changes: 1 addition & 1 deletion src/CardSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default {
}

button {
float: right;
float: inline-end;
}

.card-selector:deep(.modal-container) {
Expand Down
6 changes: 3 additions & 3 deletions src/components/ActivityEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
</div>
<!-- FIXME ins/del tags do no longer work with activity so we should get rid of that -->
<p v-if="activity.message" class="activity--message" v-html="sanitizedMessage" />

Check warning on line 16 in src/components/ActivityEntry.vue

View workflow job for this annotation

GitHub Actions / NPM lint

'v-html' directive can lead to XSS attack
</div>
</template>

Expand Down Expand Up @@ -132,17 +132,17 @@
}
}
.activity--subject {
margin-left: 10px;
margin-inline-start: 10px;
}
.activity--message {
margin-left: var(--default-clickable-area);
margin-inline-start: var(--default-clickable-area);
color: var(--color-text-light);
margin-bottom: 10px;
}
.activity--timestamp {
flex-grow: 1;
color: var(--color-text-maxcontrast);
text-align: right;
text-align: end;
font-size: 0.8em;
padding: 1px;
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/AttachmentDragAndDrop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default {

.drop-upload--sidebar .dragover {
top: 20%;
left: 10%;
inset-inline-start: 10%;
width: 80%;
height: 60%;
box-shadow: 0px 0px 36px var(--color-box-shadow);
Expand All @@ -154,7 +154,7 @@ export default {
width: 100%;
height: 100%;
top: 0;
left: 0;
inset-inline-start: 0;

h2 {
font-size: 13px;
Expand Down
12 changes: 6 additions & 6 deletions src/components/Controls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -485,15 +485,15 @@ export default {
display: flex;
margin: calc(var(--default-grid-baseline) * 2);
height: var(--default-clickable-area);
padding-left: var(--default-clickable-area);
padding-inline-start: var(--default-clickable-area);

.board-title {
display: flex;
align-items: center;

h2 {
margin: 0;
margin-right: 10px;
margin-inline-end: 10px;
font-size: 18px;
}

Expand All @@ -512,11 +512,11 @@ export default {
display: flex;

#new-stack-input-main {
margin-right: 8px;
margin-inline-end: 8px;
}
.icon-confirm {
border: 2px solid var(--color-border-maxcontrast) !important;
border-left: none !important;
border-inline-start: none !important;
}
&:focus-within, &:focus, &:focus-visible,
&:hover {
Expand Down Expand Up @@ -553,7 +553,7 @@ export default {
justify-content: center;
input[type=search] {
background-position: 5px;
padding-left: 24px !important;
padding-inline-start: 24px !important;
}
}

Expand All @@ -564,7 +564,7 @@ export default {
.avatardiv {
vertical-align: middle;
margin-bottom: 2px;
margin-right: 3px;
margin-inline-end: 3px;
}
.label {
padding: 5px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/KeyboardShortcuts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ export default {
box-shadow: 0 0 100px 30px rgba(0, 0, 0, 0.5);
max-width: 500px;
bottom: 32px;
left: 50%;
inset-inline-start: 50%;
transform: translateX(-50%);
background-color: var(--color-background-dark);
border-radius: var(--border-radius-rounded);
Expand Down
5 changes: 2 additions & 3 deletions src/components/SessionList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,10 @@ export default {
.avatar-list {
min-height: var(--default-clickable-area);
align-items: center;
padding-right: 0.5em;
padding-inline: 6px 0.5em;
border: none;
background-color: var(--color-main-background);
margin: 0;
padding-left: 6px;
display: inline-flex;
flex-direction: row-reverse;

Expand All @@ -86,6 +85,6 @@ export default {
z-index: 1;
overflow: hidden;
box-sizing: content-box !important;
margin-left: -8px;
margin-inline-start: -8px;
}
</style>
4 changes: 2 additions & 2 deletions src/components/board/Board.vue
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ export default {
</script>

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

form {
text-align: center;
Expand Down
10 changes: 5 additions & 5 deletions src/components/board/Stack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export default {

@use 'sass:math';

@import './../../css/variables';
@import './../../css/variables.scss';

.stack {
width: 100%;
Expand Down Expand Up @@ -482,7 +482,7 @@ export default {
}
input[type="submit"] {
border-style: solid;
border-left-style: none;
border-inline-start-style: none;
}
}

Expand Down Expand Up @@ -526,12 +526,12 @@ export default {

&.icon-loading-small:after,
&.icon-loading-small-dark:after {
margin-left: calc(50% - 25px);
margin-inline-start: calc(50% - 25px);
}

input[type=text] {
flex-grow: 1;
padding-right: 16px;
padding-inline-end: 16px;
}

input {
Expand Down Expand Up @@ -573,7 +573,7 @@ export default {
}

.modal__content button {
float: right;
float: inline-end;
}

progress {
Expand Down
2 changes: 1 addition & 1 deletion src/components/boards/BoardItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default {
border-radius: 50%;
height: 32px;
width: 32px;
margin-left: 3px;
margin-inline-start: 3px;
&.icon-more {
background-color:var(--color-background-dark);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/AssignmentSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,5 +133,5 @@ export default defineComponent({
</script>

<style lang="scss" scoped>
@import '../../css/selector';
@import '../../css/selector.scss';
</style>
10 changes: 5 additions & 5 deletions src/components/card/AttachmentList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,12 +271,12 @@ export default {
gap: calc(var(--default-grid-baseline) * 3);

.icon-upload, .icon-folder {
padding-left: var(--default-clickable-area);
padding-inline-start: var(--default-clickable-area);
background-position: 16px center;
flex-grow: 1;
height: var(--default-clickable-area);
margin-bottom: 12px;
text-align: left;
text-align: start;
}
}

Expand All @@ -289,7 +289,7 @@ export default {
min-width: 200px;
max-height: 50%;
top: 50%;
left: 50%;
inset-inline-start: 50%;
transform: translate(-50%, -50%);
background-color: #eee;
z-index: 2;
Expand All @@ -302,7 +302,7 @@ export default {
padding: 0;
.icon-close {
display: inline-block;
float: right;
float: inline-end;
}
}

Expand Down Expand Up @@ -350,7 +350,7 @@ export default {
}
.app-popover-menu-utils {
position: relative;
right: -10px;
inset-inline-end: -10px;
button {
height: 32px;
width: 42px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/CardDetailEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ export default defineComponent({
})
</script>
<style lang="scss">
@import '../../css/selector';
@import '../../css/selector.scss';
</style>
3 changes: 1 addition & 2 deletions src/components/card/CardSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,7 @@ section.app-sidebar__tab--active {
min-width: calc(100% - #{$modal-padding * 2});
position: relative;
top: 0;
left: 0;
right: 0;
inset-inline: 0;
max-width: calc(100% - #{$modal-padding * 2});
min-height: calc(100vh - var(--header-height) * 4);
padding: 0 14px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/CardSidebarTabComments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@ export default {
</script>

<style scoped lang="scss">
@import '../../css/comments';
@import '../../css/comments.scss';
</style>
10 changes: 5 additions & 5 deletions src/components/card/CardSidebarTabDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default {
.section-label {
background-position: 0px center;
width: 28px;
margin-left: 9px;
margin-inline-start: 9px;
flex-shrink: 0;
}

Expand All @@ -214,7 +214,7 @@ export default {

.remove-due-button{
margin-top: -2px;
margin-left: 6px;
margin-inline-start: 6px;
}
}
}
Expand All @@ -239,7 +239,7 @@ export default {
padding: 0px 5px;
border-radius: 15px;
font-size: 85%;
margin-right: 3px;
margin-inline-end: 3px;
}

.avatarLabel {
Expand All @@ -251,13 +251,13 @@ export default {
}

.avatar-list--readonly .avatardiv {
margin-right: 3px;
margin-inline-end: 3px;
}

.avatarlist--inline {
display: flex;
align-items: center;
margin-right: 3px;
margin-inline-end: 3px;
.avatarLabel {
padding: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/CommentForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default {
</script>

<style lang="scss">
@import '../../css/comments';
@import '../../css/comments.scss';

[class^="_tribute-container-autocomplete_"],
[class*=" _tribute-container-autocomplete_"],
Expand Down
8 changes: 4 additions & 4 deletions src/components/card/CommentItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export default {
</script>

<style scoped lang="scss">
@import '../../css/comments';
@import '../../css/comments.scss';

.reply {
margin: 0 0 0 var(--default-clickable-area);
Expand All @@ -228,14 +228,14 @@ export default {
}

.reply--cancel {
margin-right: -12px;
margin-inline-end: -12px;
margin-top: -12px;
}
}

.reply--wrapper {
border-left: 4px solid var(--color-border-dark);
padding-left: 8px;
border-inline-start: 4px solid var(--color-border-dark);
padding-inline-start: 8px;
}

&:deep(.rich-text--wrapper) {
Expand Down
Loading
Loading