diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-03-07 15:33:09 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-03-07 15:33:09 +0200 |
commit | 98103bb2f721a3bfddd2f86e97e0e855dd6ac64e (patch) | |
tree | 5f7f7241bfd2179123accf9ca6df2595116be190 | |
parent | 990af4e5c23fe1d7f9596ed14ea731133730a7fa (diff) | |
parent | e5b003f5ab8da21b4d7022677e7f0cf6413fcbbf (diff) | |
download | wekan-98103bb2f721a3bfddd2f86e97e0e855dd6ac64e.tar.gz wekan-98103bb2f721a3bfddd2f86e97e0e855dd6ac64e.tar.bz2 wekan-98103bb2f721a3bfddd2f86e97e0e855dd6ac64e.zip |
Merge branch 'lumatijev-patch-1' into devel
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | client/components/swimlanes/swimlanes.styl | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 92ac011c..9850cc84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,9 +20,11 @@ and fixes the following bugs: - [Fix Add Card Button dissapearing when dragging](https://github.com/wekan/wekan/commit/58e5e9b308113e5a8af5166328a68a0aafcc2558); - [Fix Scrollbar near top of screen when using internet explorer on Win7](https://github.com/wekan/wekan/commit/128a356b9222fa0ed824b477c2d0e1e6a0368021); - [Fix scroll when dragging elements. Remove scrollbars from swimlanes.](https://github.com/wekan/wekan/commit/ed8471be9b79243b016a275e5b11a6912717fbb9); -- [Partial fix for scroll bar inside cardDetails](https://github.com/wekan/wekan/commit/ac7d44f8a8d809cd94ed5ef3640473f34c72403b). +- [Partial fix for scroll bar inside cardDetails](https://github.com/wekan/wekan/commit/ac7d44f8a8d809cd94ed5ef3640473f34c72403b); +- [Fix swimlane header rotation on Google Chrome. After this change both Firefox 58 and Google Chrome 64 + have properly rotated swimlane header.](https://github.com/wekan/wekan/commit/9a1b1a5bedbe44827de109731a3c3b1a07790d3e). -Thanks to GitHub users andresmanelli, GhassenRjab, kubiko, lunatic4ever and xet7 for their contributions. +Thanks to GitHub users andresmanelli, GhassenRjab, kubiko, lumatijev, lunatic4ever and xet7 for their contributions. # v0.77 2018-02-23 Wekan release diff --git a/client/components/swimlanes/swimlanes.styl b/client/components/swimlanes/swimlanes.styl index 99edd414..29054d32 100644 --- a/client/components/swimlanes/swimlanes.styl +++ b/client/components/swimlanes/swimlanes.styl @@ -32,7 +32,8 @@ border-bottom: 1px solid #CCC .swimlane-header - writing-mode: sideways-lr; + writing-mode: vertical-rl; + transform: rotate(180deg); font-size: 14px; line-height: 50px; margin-top: 50px; |