Skip to content

Commit

Permalink
fix(scheduler): reverse event arrow direction in RTL
Browse files Browse the repository at this point in the history
  • Loading branch information
tsvetomir authored and joneff committed Mar 14, 2019
1 parent 7a51980 commit e6aeefc
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions packages/default/scss/scheduler/_layout.scss
Expand Up @@ -147,13 +147,6 @@
}
.k-nav-today { @include border-left-radius-only(); }
.k-nav-next { @include border-right-radius-only(); }

.k-rtl & {
.k-i-arrow-60-left,
.k-i-arrow-60-right {
transform: scaleX(-1);
}
}
}

.k-scheduler-tools {
Expand Down Expand Up @@ -832,6 +825,15 @@
.k-scheduler-edit-form .k-scheduler-delete {
float: right;
}

&.k-scheduler {
.k-i-arrow-60-left,
.k-i-arrow-60-right,
.k-current-time-arrow-right
{
transform: scaleX(-1);
}
}
}

}

0 comments on commit e6aeefc

Please sign in to comment.